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.
25 lines
823 B
25 lines
823 B
# Generated by Django 2.0.7 on 2019-08-14 15:06
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('content', '0030_auto_20190809_0133'),
|
|
('payment', '0037_add_paid_one_more_bonuses'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='schoolpayment',
|
|
name='package',
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='content.Package'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='payment',
|
|
name='bonus',
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='purchase_payments', to='payment.UserBonus'),
|
|
),
|
|
]
|
|
|