+ 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
497 B
Python
19 lines
497 B
Python
# Generated by Django 4.2.2 on 2024-04-07 20:56
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('account', '0009_alter_user_options_user_balance_user_referral_code'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='bonusprogramtransaction',
|
|
name='comment',
|
|
field=models.CharField(blank=True, max_length=200, null=True, verbose_name='Комментарий'),
|
|
),
|
|
]
|