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.
19 lines
518 B
19 lines
518 B
# Generated by Django 2.0.6 on 2018-09-05 23:37
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('payment', '0022_auto_20180904_0106'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='payment',
|
|
name='bonus',
|
|
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='purchase_payments', to='payment.UserBonus'),
|
|
),
|
|
]
|
|
|