-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix modal bug and add workflow status
- Loading branch information
1 parent
5ca98a4
commit b5c1c42
Showing
6 changed files
with
136 additions
and
68 deletions.
There are no files selected for viewing
59 changes: 59 additions & 0 deletions
59
sde_collections/migrations/0074_alter_collection_reindexing_status_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,59 @@ | ||
# Generated by Django 4.2.9 on 2024-12-11 02:41 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("sde_collections", "0073_alter_collection_workflow_status_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="collection", | ||
name="reindexing_status", | ||
field=models.IntegerField( | ||
choices=[ | ||
(1, "Re-Indexing Not Needed"), | ||
(2, "Re-Indexing Needed"), | ||
(3, "Re-Indexing Finished"), | ||
(4, "Ready for Re-Curation"), | ||
(5, "Re-Curation Finished"), | ||
(6, "Re-Indexed on Prod"), | ||
], | ||
default=1, | ||
verbose_name="Reindexing Status", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="reindexinghistory", | ||
name="old_status", | ||
field=models.IntegerField( | ||
choices=[ | ||
(1, "Re-Indexing Not Needed"), | ||
(2, "Re-Indexing Needed"), | ||
(3, "Re-Indexing Finished"), | ||
(4, "Ready for Re-Curation"), | ||
(5, "Re-Curation Finished"), | ||
(6, "Re-Indexed on Prod"), | ||
], | ||
null=True, | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="reindexinghistory", | ||
name="reindexing_status", | ||
field=models.IntegerField( | ||
choices=[ | ||
(1, "Re-Indexing Not Needed"), | ||
(2, "Re-Indexing Needed"), | ||
(3, "Re-Indexing Finished"), | ||
(4, "Ready for Re-Curation"), | ||
(5, "Re-Curation Finished"), | ||
(6, "Re-Indexed on Prod"), | ||
], | ||
default=1, | ||
), | ||
), | ||
] |
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