-
Notifications
You must be signed in to change notification settings - Fork 0
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 #456 from UCL/feature/duplicating-testimonia
Feature/duplicating testimonia
- Loading branch information
Showing
16 changed files
with
417 additions
and
181 deletions.
There are no files selected for viewing
38 changes: 38 additions & 0 deletions
38
src/rard/research/migrations/0072_adding_testimonia_duplicates.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,38 @@ | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("research", "0071_add_duplicates_field"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="anonymousfragment", | ||
name="duplicate_ts", | ||
field=models.ManyToManyField( | ||
blank=True, | ||
related_name="anonymousfragment_duplicate_ts", | ||
to="research.Testimonium", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="fragment", | ||
name="duplicate_ts", | ||
field=models.ManyToManyField( | ||
blank=True, | ||
related_name="fragment_duplicate_ts", | ||
to="research.Testimonium", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="testimonium", | ||
name="duplicate_ts", | ||
field=models.ManyToManyField( | ||
blank=True, | ||
related_name="testimonium_duplicate_ts", | ||
to="research.Testimonium", | ||
), | ||
), | ||
] |
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.