Skip to content

Commit

Permalink
chore: make migrations and squash 0013 into 0012
Browse files Browse the repository at this point in the history
  • Loading branch information
nas-tabchiche committed May 16, 2024
1 parent 420c700 commit 9a4591b
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,11 @@ class Migration(migrations.Migration):
name="objects_meta",
field=models.JSONField(default=dict),
),
migrations.AlterField(
model_name="loadedlibrary",
name="updated_at",
field=models.DateTimeField(auto_now=True, verbose_name="Updated at"),
),
migrations.AlterModelOptions(
name="loadedlibrary",
options={
Expand Down Expand Up @@ -324,7 +329,7 @@ class Migration(migrations.Migration):
),
),
("builtin", models.BooleanField(default=False)),
("objects_meta", models.JSONField()),
("objects_meta", models.JSONField(default=dict)),
("dependencies", models.JSONField(null=True)),
("is_loaded", models.BooleanField(default=False)),
("hash_checksum", models.CharField(max_length=64)),
Expand Down

0 comments on commit 9a4591b

Please sign in to comment.