main funtions are ready

issue: ServiceRequest creates when QR code scanned
This commit is contained in:
2024-10-14 05:24:48 +09:00
parent ee254ef17f
commit f17c6b3a1a
65 changed files with 1609 additions and 327 deletions

View File

@@ -0,0 +1,22 @@
# Generated by Django 5.1.1 on 2024-10-13 00:17
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('comunication', '0003_remove_usercommunication_preferred_method_and_more'),
]
operations = [
migrations.CreateModel(
name='UserCommunication',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('email', models.EmailField(max_length=254)),
('phone', models.CharField(blank=True, max_length=15)),
('chat_id', models.CharField(blank=True, max_length=50)),
],
),
]