-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #631 from alan-turing-institute/develop
Deployment to Prod on October 9th
- Loading branch information
Showing
27 changed files
with
1,126 additions
and
335 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
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,80 @@ | ||
# Generated by Django 3.2.8 on 2024-09-26 12:31 | ||
|
||
import django.db.models.deletion | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("eap_api", "0023_assurancecaseimage"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="comment", | ||
name="context", | ||
field=models.ForeignKey( | ||
default=None, | ||
null=True, | ||
on_delete=django.db.models.deletion.CASCADE, | ||
related_name="comments", | ||
to="eap_api.context", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="comment", | ||
name="evidence", | ||
field=models.ForeignKey( | ||
default=None, | ||
null=True, | ||
on_delete=django.db.models.deletion.CASCADE, | ||
related_name="comments", | ||
to="eap_api.evidence", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="comment", | ||
name="goal", | ||
field=models.ForeignKey( | ||
default=None, | ||
null=True, | ||
on_delete=django.db.models.deletion.CASCADE, | ||
related_name="comments", | ||
to="eap_api.toplevelnormativegoal", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="comment", | ||
name="property_claim", | ||
field=models.ForeignKey( | ||
default=None, | ||
null=True, | ||
on_delete=django.db.models.deletion.CASCADE, | ||
related_name="comments", | ||
to="eap_api.propertyclaim", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="comment", | ||
name="strategy", | ||
field=models.ForeignKey( | ||
default=None, | ||
null=True, | ||
on_delete=django.db.models.deletion.CASCADE, | ||
related_name="comments", | ||
to="eap_api.strategy", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="comment", | ||
name="assurance_case", | ||
field=models.ForeignKey( | ||
default=None, | ||
null=True, | ||
on_delete=django.db.models.deletion.CASCADE, | ||
related_name="comments", | ||
to="eap_api.assurancecase", | ||
), | ||
), | ||
] |
24 changes: 24 additions & 0 deletions
24
eap_backend/eap_api/migrations/0025_alter_assurancecaseimage_assurance_case.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,24 @@ | ||
# Generated by Django 3.2.8 on 2024-09-30 09:21 | ||
|
||
import django.db.models.deletion | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("eap_api", "0024_auto_20240926_1231"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="assurancecaseimage", | ||
name="assurance_case", | ||
field=models.ForeignKey( | ||
on_delete=django.db.models.deletion.CASCADE, | ||
related_name="case_image", | ||
to="eap_api.assurancecase", | ||
unique=True, | ||
), | ||
), | ||
] |
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
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.