Skip to content

Commit 147183b

Browse files
Added missing migration file (#897)
1 parent c2e5bb3 commit 147183b

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Generated by Django 4.2.10 on 2025-07-08 16:51
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
dependencies = [
8+
("main", "0059_alter_project_options"),
9+
]
10+
11+
operations = [
12+
migrations.AlterField(
13+
model_name="sourceimagecollection",
14+
name="method",
15+
field=models.CharField(
16+
choices=[
17+
("common_combined", "common_combined"),
18+
("random", "random"),
19+
("stratified_random", "stratified_random"),
20+
("interval", "interval"),
21+
("manual", "manual"),
22+
("starred", "starred"),
23+
("random_from_each_event", "random_from_each_event"),
24+
("last_and_random_from_each_event", "last_and_random_from_each_event"),
25+
("greatest_file_size_from_each_event", "greatest_file_size_from_each_event"),
26+
("detections_only", "detections_only"),
27+
("full", "full"),
28+
],
29+
default="common_combined",
30+
max_length=255,
31+
),
32+
),
33+
]

0 commit comments

Comments
 (0)