add telegram

This commit is contained in:
Administrator
2023-10-11 18:37:39 +03:00
parent 319bed3dfc
commit f1f7c0e89b
5 changed files with 61 additions and 2 deletions

View File

@@ -0,0 +1,23 @@
# Generated by Django 4.1.7 on 2023-10-11 15:17
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('web', '0006_remove_project_web_project_next_st_234c0f_idx_and_more'),
]
operations = [
migrations.AddField(
model_name='customuser',
name='telegram_id',
field=models.BigIntegerField(blank=True, null=True),
),
migrations.AddField(
model_name='customuser',
name='telegram_username',
field=models.TextField(blank=True, null=True),
),
]