Changeset View
Changeset View
Standalone View
Standalone View
looper/migrations/0052_paymeth_no_default_type.py
| # Generated by Django 2.1.3 on 2018-12-18 16:45 | # Generated by Django 2.1.3 on 2018-12-18 16:45 | ||||
| from django.db import migrations, models | from django.db import migrations, models | ||||
| class Migration(migrations.Migration): | class Migration(migrations.Migration): | ||||
| dependencies = [ | dependencies = [ | ||||
| ('looper', '0051_gateway_form_description'), | ('looper', '0051_gateway_form_description'), | ||||
| ] | ] | ||||
| operations = [ | operations = [ | ||||
| migrations.AlterField( | migrations.AlterField( | ||||
| model_name='paymentmethod', | model_name='paymentmethod', | ||||
| name='method_type', | name='method_type', | ||||
| field=models.CharField(blank=True, choices=[('cc', 'Credit Card'), ('pp', 'PayPal'), ('ba', 'Bank')], max_length=255), | field=models.CharField( | ||||
| blank=True, | |||||
| choices=[('cc', 'Credit Card'), ('pp', 'PayPal'), ('ba', 'Bank')], | |||||
| max_length=255, | |||||
| ), | |||||
| ), | ), | ||||
| ] | ] | ||||