Skip to content

Commit 6919114

Browse files
committed
chore: add db migration
1 parent a1864dc commit 6919114

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Generated by Django 4.2.10 on 2025-08-29 04:29
2+
3+
import ami.main.models
4+
from django.db import migrations
5+
import django_pydantic_field.fields
6+
7+
8+
class Migration(migrations.Migration):
9+
dependencies = [
10+
("main", "0069_merge_20250818_1201"),
11+
]
12+
13+
operations = [
14+
migrations.AlterField(
15+
model_name="project",
16+
name="feature_flags",
17+
field=django_pydantic_field.fields.PydanticSchemaField(
18+
blank=True,
19+
config=None,
20+
default={
21+
"auto_process_manual_uploads": False,
22+
"default_filters": False,
23+
"reprocess_existing_detections": False,
24+
"tags": False,
25+
},
26+
schema=ami.main.models.ProjectFeatureFlags,
27+
),
28+
),
29+
]

0 commit comments

Comments
 (0)