Added urgent flag in model
This commit is contained in:
parent
b2b1d15bc2
commit
5370395143
18
migratorapi/api/migrations/0009_migration_is_urgent.py
Normal file
18
migratorapi/api/migrations/0009_migration_is_urgent.py
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
# Generated by Django 3.1.2 on 2020-10-22 01:27
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('api', '0008_auto_20201021_1805'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AddField(
|
||||||
|
model_name='migration',
|
||||||
|
name='is_urgent',
|
||||||
|
field=models.BooleanField(default=False),
|
||||||
|
),
|
||||||
|
]
|
||||||
Reference in New Issue
Block a user