-
Notifications
You must be signed in to change notification settings - Fork 6
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 #1596 from lucasmarchd01/add-migration-28
Add missing migration file
- Loading branch information
Showing
2 changed files
with
33 additions
and
1 deletion.
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
32 changes: 32 additions & 0 deletions
32
django/cantusdb_project/main_app/migrations/0028_alter_institution_options_and_more.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,32 @@ | ||
# Generated by Django 4.2.14 on 2024-08-12 14:54 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("main_app", "0027_rename_office_service_rename_office_chant_service_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelOptions( | ||
name="institution", | ||
options={"ordering": ["country", "city", "name"]}, | ||
), | ||
migrations.AlterField( | ||
model_name="institutionidentifier", | ||
name="identifier_type", | ||
field=models.IntegerField( | ||
choices=[ | ||
(1, "RISM Online"), | ||
(2, "VIAF"), | ||
(3, "Wikidata"), | ||
(4, "GND (Gemeinsame Normdatei)"), | ||
(5, "Bibliothèque national de France"), | ||
(6, "Library of Congress"), | ||
(7, "Digital Image Archive of Medieval Music"), | ||
] | ||
), | ||
), | ||
] |