+ 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
21 lines
529 B
Python
21 lines
529 B
Python
# Generated by Django 4.2.2 on 2024-04-08 02:59
|
|
|
|
from django.db import migrations, models
|
|
import django.utils.timezone
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('account', '0011_alter_bonusprogramtransaction_options'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='referralrelationship',
|
|
name='invited_at',
|
|
field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now),
|
|
preserve_default=False,
|
|
),
|
|
]
|