19 lines
469 B
Python
19 lines
469 B
Python
# Generated by Django 4.1.5 on 2023-01-12 18:06
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('core', '0013_notificationsettings'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='notificationrule',
|
|
name='priority',
|
|
field=models.IntegerField(choices=[(1, 'min'), (2, 'low'), (3, 'default'), (4, 'high'), (5, 'max')], default=1),
|
|
),
|
|
]
|