Skip to content

Commit

Permalink
Make migrations for background jobs
Browse files Browse the repository at this point in the history
Make migrations for background jobs
  • Loading branch information
rushirajnenuji committed Aug 9, 2023
1 parent 21673f4 commit 7dc2d35
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions ezidapp/migrations/0003_auto_20230809_1154.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Generated by Django 3.2.18 on 2023-08-09 11:54

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('ezidapp', '0002_auto_20221026_1139'),
]

operations = [
migrations.AlterField(
model_name='binderqueue',
name='status',
field=models.CharField(choices=[('U', 'Awaiting submission'), ('C', 'Submitted, unchecked'), ('S', 'Submitted'), ('W', 'Registered with warning'), ('F', 'Registration failed'), ('T', 'Registration attempt unsuccessful'), ('I', 'Ignored (operation not applicable)'), ('O', 'Completed successfully')], db_index=True, default='U', max_length=1),
),
migrations.AlterField(
model_name='crossrefqueue',
name='status',
field=models.CharField(choices=[('U', 'Awaiting submission'), ('C', 'Submitted, unchecked'), ('S', 'Submitted'), ('W', 'Registered with warning'), ('F', 'Registration failed'), ('T', 'Registration attempt unsuccessful'), ('I', 'Ignored (operation not applicable)'), ('O', 'Completed successfully')], db_index=True, default='U', max_length=1),
),
migrations.AlterField(
model_name='datacitequeue',
name='status',
field=models.CharField(choices=[('U', 'Awaiting submission'), ('C', 'Submitted, unchecked'), ('S', 'Submitted'), ('W', 'Registered with warning'), ('F', 'Registration failed'), ('T', 'Registration attempt unsuccessful'), ('I', 'Ignored (operation not applicable)'), ('O', 'Completed successfully')], db_index=True, default='U', max_length=1),
),
migrations.AlterField(
model_name='searchindexerqueue',
name='status',
field=models.CharField(choices=[('U', 'Awaiting submission'), ('C', 'Submitted, unchecked'), ('S', 'Submitted'), ('W', 'Registered with warning'), ('F', 'Registration failed'), ('T', 'Registration attempt unsuccessful'), ('I', 'Ignored (operation not applicable)'), ('O', 'Completed successfully')], db_index=True, default='U', max_length=1),
),
]

0 comments on commit 7dc2d35

Please sign in to comment.