22 lines
544 B
Python
22 lines
544 B
Python
![]() |
# Generated by Django 5.2.6 on 2025-09-09 07:12
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
dependencies = [
|
||
|
("risks", "0013_control_created_at_control_updatet_at_and_more"),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.RemoveField(
|
||
|
model_name="control",
|
||
|
name="risk",
|
||
|
),
|
||
|
migrations.AddField(
|
||
|
model_name="control",
|
||
|
name="risks",
|
||
|
field=models.ManyToManyField(related_name="controls", to="risks.risk"),
|
||
|
),
|
||
|
]
|