Skip to content

Commit

Permalink
fix(migrations): add migrations for adjusted source_completeness options
Browse files Browse the repository at this point in the history
  • Loading branch information
dchiller committed Oct 15, 2024
1 parent 7561b0e commit b003278
Showing 1 changed file with 26 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Generated by Django 4.2.14 on 2024-10-15 14:37

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("main_app", "0031_source_name_source_production_method_and_more"),
]

operations = [
migrations.AlterField(
model_name="source",
name="source_completeness",
field=models.IntegerField(
choices=[
(1, "Complete source"),
(2, "Fragment"),
(3, "Reconstruction"),
],
default=1,
verbose_name="Complete Source/Fragment",
),
),
]

0 comments on commit b003278

Please sign in to comment.