kwork-poizonstore/account/migrations/0014_alter_user_balance.py
phzhik ef40e9f7e0 + Bonus system (TODO: spend bonuses)
+ 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
2024-04-27 21:29:50 +04:00

19 lines
475 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Generated by Django 4.2.2 on 2024-04-14 14:46
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('account', '0013_alter_referralrelationship_invited_and_more'),
]
operations = [
migrations.AlterField(
model_name='user',
name='balance',
field=models.PositiveSmallIntegerField(default=0, editable=False, verbose_name='Баланс, руб'),
),
]