Skip to content

Commit

Permalink
πŸ’š Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
falexwolf committed Jan 8, 2025
1 parent 95e15c9 commit d55cc05
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ourprojects/migrations/0002_lamindbv1.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name="person",
name="_branch_code",
field=models.SmallIntegerField(db_index=True, default=1),
field=models.SmallIntegerField(db_index=True, db_default=1),
),
migrations.AddField(
model_name="project",
name="_branch_code",
field=models.SmallIntegerField(db_index=True, default=1),
field=models.SmallIntegerField(db_index=True, db_default=1),
),
migrations.AddField(
model_name="reference",
name="_branch_code",
field=models.SmallIntegerField(db_index=True, default=1),
field=models.SmallIntegerField(db_index=True, db_default=1),
),
migrations.AddField(
model_name="person",
Expand Down

0 comments on commit d55cc05

Please sign in to comment.