You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
772 B
24 lines
772 B
# Generated by Django 2.0.2 on 2018-02-21 12:58
|
|
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('payment', '0006_auto_20180221_1126'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='authorbalance',
|
|
options={'verbose_name': 'Баланс', 'verbose_name_plural': 'Балансы'},
|
|
),
|
|
migrations.AlterField(
|
|
model_name='authorbalance',
|
|
name='author',
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='balances', to=settings.AUTH_USER_MODEL, verbose_name='Автор'),
|
|
),
|
|
]
|
|
|