import changes in notification

This commit is contained in:
2025-10-08 11:13:01 +03:30
parent cad4ccbe4b
commit f1a209a166
9 changed files with 104 additions and 25 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 5.0 on 2025-10-08 07:40
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('notification', '0002_notification_device'),
]
operations = [
migrations.AddField(
model_name='notification',
name='delivering_type',
field=models.CharField(choices=[('general', 'GENERAL'), ('private', 'PRIVATE')], max_length=150, null=True),
),
]

View File

@@ -0,0 +1,18 @@
# Generated by Django 5.0 on 2025-10-08 07:41
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('notification', '0003_notification_delivering_type'),
]
operations = [
migrations.AlterField(
model_name='notification',
name='delivering_type',
field=models.CharField(choices=[('general', 'GENERAL'), ('private', 'PRIVATE')], default='private', max_length=150, null=True),
),
]