-
Notifications
You must be signed in to change notification settings - Fork 179
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ca 545 add ref id to all editable objects (#1044)
- Loading branch information
Showing
21 changed files
with
217 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 43 additions & 0 deletions
43
backend/core/migrations/0041_add_ref_id_to_project_appliedcontrol_assessment.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Generated by Django 5.1.1 on 2024-11-19 10:15 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("core", "0040_riskscenario_ref_id"), | ||
] | ||
|
||
operations = [ | ||
migrations.RenameField( | ||
model_name="project", old_name="internal_reference", new_name="ref_id" | ||
), | ||
migrations.AlterField( | ||
model_name="project", | ||
name="ref_id", | ||
field=models.CharField( | ||
blank=True, max_length=100, null=True, verbose_name="reference id" | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="appliedcontrol", | ||
name="ref_id", | ||
field=models.CharField( | ||
blank=True, max_length=100, null=True, verbose_name="reference id" | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="complianceassessment", | ||
name="ref_id", | ||
field=models.CharField( | ||
blank=True, max_length=100, null=True, verbose_name="reference id" | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="riskassessment", | ||
name="ref_id", | ||
field=models.CharField( | ||
blank=True, max_length=100, null=True, verbose_name="reference id" | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.