+ Telegram bot: sign up, sign in, notifications + Anonymous users can't see yuan_rate_commission * Only logged in customers can create/update orders * Customer info migrated to separate User model * Renamed legacy fields in serializers * Cleanup in API classes
19 lines
447 B
Python
19 lines
447 B
Python
# Generated by Django 4.2.2 on 2024-04-05 21:35
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('account', '0006_user_tg_user_id'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='user',
|
|
name='is_draft_user',
|
|
field=models.BooleanField(default=False, verbose_name='Черновик пользователя'),
|
|
),
|
|
]
|