Skip to content

Commit

Permalink
update decision result properties
Browse files Browse the repository at this point in the history
  • Loading branch information
Paula Kammler committed Dec 7, 2023
1 parent 93e54f2 commit c2233bf
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions decision/migrations/0002_alter_decision_result.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated by Django 4.2.7 on 2023-12-06 17:27

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("decision", "0001_initial"),
]

operations = [
migrations.AlterField(
model_name="decision",
name="result",
field=models.BooleanField(null=True),
),
]

0 comments on commit c2233bf

Please sign in to comment.