2023-02-02 19:35:27 +00:00
|
|
|
# Generated by Django 4.1.5 on 2023-02-02 19:08
|
|
|
|
|
|
|
|
import uuid
|
|
|
|
|
2023-02-02 20:04:55 +00:00
|
|
|
from django.db import migrations, models
|
|
|
|
|
2023-02-02 19:35:27 +00:00
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
|
|
|
('core', '0023_alter_perms_options'),
|
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterField(
|
|
|
|
model_name='notificationrule',
|
|
|
|
name='id',
|
|
|
|
field=models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False),
|
|
|
|
),
|
|
|
|
]
|