Skip to content

Commit

Permalink
chore: refactor migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohamed-Hacene committed Dec 12, 2024
1 parent 7f845aa commit 1f35405
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 39 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Generated by Django 5.1.4 on 2024-12-11 11:07

from django.db import migrations
from django.db import migrations, models


class Migration(migrations.Migration):
Expand All @@ -13,4 +13,18 @@ class Migration(migrations.Migration):
model_name="ebiosrmstudy",
name="risk_assessments",
),
migrations.RemoveField(
model_name="roto",
name="pertinence",
),
migrations.AlterField(
model_name="roto",
name="feared_events",
field=models.ManyToManyField(
blank=True,
related_name="ro_to_couples",
to="ebios_rm.fearedevent",
verbose_name="Feared events",
),
),
]

This file was deleted.

12 changes: 0 additions & 12 deletions backend/ebios_rm/migrations/0004_merge_20241212_1835.py

This file was deleted.

0 comments on commit 1f35405

Please sign in to comment.