Skip to content

Commit 73dd8b9

Browse files
committed
fix: missing migration after last commit in #946
this is only a configuration change, it does not alter the DB schema
1 parent ad42c37 commit 73dd8b9

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Generated by Django 4.2.10 on 2025-09-16 21:20
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", "0072_project_draft"),
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=ami.main.models.get_default_feature_flags,
21+
schema=ami.main.models.ProjectFeatureFlags,
22+
),
23+
),
24+
]

0 commit comments

Comments
 (0)