Skip to content

Commit 979484d

Browse files
committed
Fix
1 parent 32b99fb commit 979484d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

api/projects/migrations/0021_add_identity_overrides_storage_type.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ class Migration(migrations.Migration):
2727
("FLAGSMITH_OVERRIDES", "Flagsmith Overrides"),
2828
],
2929
default=None,
30+
max_length=50,
3031
null=True,
3132
),
3233
),
@@ -35,12 +36,12 @@ class Migration(migrations.Migration):
3536
model_name="project",
3637
name="identity_overrides_storage_type",
3738
field=models.CharField(
38-
max_length=50,
3939
choices=[
4040
("IDENTITY_RECORD", "Identity Record"),
4141
("FLAGSMITH_OVERRIDES", "Flagsmith Overrides"),
4242
],
4343
default="IDENTITY_RECORD",
44+
max_length=50,
4445
),
4546
),
4647
]

0 commit comments

Comments
 (0)