Changeset View
Changeset View
Standalone View
Standalone View
looper/migrations/0010_subs_pending_cancellation.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', '0009_canceled_to_cancelled'), | ('looper', '0009_canceled_to_cancelled'), | ||||
| ] | ] | ||||
| operations = [ | operations = [ | ||||
| migrations.AlterField( | migrations.AlterField( | ||||
| model_name='subscription', | model_name='subscription', | ||||
| name='status', | name='status', | ||||
| field=models.CharField(choices=[('active', 'Active'), ('on-hold', 'On Hold'), ('pending-cancellation', 'Pending Cancellation'), ('cancelled', 'Cancelled')], default='on-hold', max_length=20), | field=models.CharField( | ||||
| choices=[ | |||||
| ('active', 'Active'), | |||||
| ('on-hold', 'On Hold'), | |||||
| ('pending-cancellation', 'Pending Cancellation'), | |||||
| ('cancelled', 'Cancelled'), | |||||
| ], | |||||
| default='on-hold', | |||||
| max_length=20, | |||||
| ), | |||||
| ), | ), | ||||
| ] | ] | ||||