Changeset View
Changeset View
Standalone View
Standalone View
looper/migrations/0011_order_noneditable_subscription.py
| # Generated by Django 2.1.1 on 2018-09-25 12:04 | # Generated by Django 2.1.1 on 2018-09-25 12:04 | ||||
| from django.db import migrations, models | from django.db import migrations, models | ||||
| import django.db.models.deletion | import django.db.models.deletion | ||||
| class Migration(migrations.Migration): | class Migration(migrations.Migration): | ||||
| dependencies = [ | dependencies = [ | ||||
| ('looper', '0010_subs_pending_cancellation'), | ('looper', '0010_subs_pending_cancellation'), | ||||
| ] | ] | ||||
| operations = [ | operations = [ | ||||
| migrations.AlterField( | migrations.AlterField( | ||||
| model_name='order', | model_name='order', | ||||
| name='subscription', | name='subscription', | ||||
| field=models.ForeignKey(editable=False, on_delete=django.db.models.deletion.CASCADE, to='looper.Subscription'), | field=models.ForeignKey( | ||||
| editable=False, | |||||
| on_delete=django.db.models.deletion.CASCADE, | |||||
| to='looper.Subscription', | |||||
| ), | |||||
| ), | ), | ||||
| ] | ] | ||||