Skip to content

Commit

Permalink
Merge branch 'main' into CA-396-The-Risk-Assessment-and-Audit-tabgrou…
Browse files Browse the repository at this point in the history
…ps-order-is-random-in-the-project-detail-view
  • Loading branch information
nas-tabchiche committed May 16, 2024
2 parents 776bdec + f0bac65 commit 4206243
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 4206243

Please sign in to comment.