notifications and email

This commit is contained in:
Egor Matveev
2022-05-16 18:38:26 +03:00
parent 86cd832f6e
commit 95cd6d06c7
5 changed files with 103 additions and 6 deletions

View File

@@ -0,0 +1,23 @@
# Generated by Django 3.2.4 on 2022-05-16 15:36
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('Main', '0037_alter_userinfo_telegram_chat_id'),
]
operations = [
migrations.AddField(
model_name='userinfo',
name='notification_email',
field=models.BooleanField(default=False),
),
migrations.AddField(
model_name='userinfo',
name='notification_telegram',
field=models.BooleanField(default=False),
),
]