Changeset View
Changeset View
Standalone View
Standalone View
looper/migrations/0006_capital_currencies.py
| # Generated by Django 2.1.1 on 2018-09-21 09:48 | # Generated by Django 2.1.1 on 2018-09-21 09:48 | ||||
| from django.db import migrations, models | from django.db import migrations, models | ||||
| import looper.models | import looper.models | ||||
| class Migration(migrations.Migration): | class Migration(migrations.Migration): | ||||
| dependencies = [ | dependencies = [ | ||||
| ('looper', '0005_orders_latest_by_pk'), | ('looper', '0005_orders_latest_by_pk'), | ||||
| ] | ] | ||||
| operations = [ | operations = [ | ||||
| migrations.AlterField( | migrations.AlterField( | ||||
| model_name='order', | model_name='order', | ||||
| name='currency', | name='currency', | ||||
| field=looper.models.CurrencyField(choices=[('USD', 'USD'), ('EUR', 'EUR')], default='EUR', max_length=3), | field=looper.models.CurrencyField( | ||||
| choices=[('USD', 'USD'), ('EUR', 'EUR')], default='EUR', max_length=3 | |||||
| ), | |||||
| ), | ), | ||||
| migrations.AlterField( | migrations.AlterField( | ||||
| model_name='planvariation', | model_name='planvariation', | ||||
| name='currency', | name='currency', | ||||
| field=looper.models.CurrencyField(choices=[('USD', 'USD'), ('EUR', 'EUR')], default='EUR', max_length=3), | field=looper.models.CurrencyField( | ||||
| choices=[('USD', 'USD'), ('EUR', 'EUR')], default='EUR', max_length=3 | |||||
| ), | |||||
| ), | ), | ||||
| migrations.AlterField( | migrations.AlterField( | ||||
| model_name='subscription', | model_name='subscription', | ||||
| name='currency', | name='currency', | ||||
| field=looper.models.CurrencyField(choices=[('USD', 'USD'), ('EUR', 'EUR')], default='EUR', max_length=3), | field=looper.models.CurrencyField( | ||||
| choices=[('USD', 'USD'), ('EUR', 'EUR')], default='EUR', max_length=3 | |||||
| ), | |||||
| ), | ), | ||||
| migrations.AlterField( | migrations.AlterField( | ||||
| model_name='transaction', | model_name='transaction', | ||||
| name='currency', | name='currency', | ||||
| field=looper.models.CurrencyField(choices=[('USD', 'USD'), ('EUR', 'EUR')], default='EUR', max_length=3), | field=looper.models.CurrencyField( | ||||
| choices=[('USD', 'USD'), ('EUR', 'EUR')], default='EUR', max_length=3 | |||||
| ), | |||||
| ), | ), | ||||
| migrations.AlterField( | migrations.AlterField( | ||||
| model_name='transactionevent', | model_name='transactionevent', | ||||
| name='currency', | name='currency', | ||||
| field=looper.models.CurrencyField(choices=[('USD', 'USD'), ('EUR', 'EUR')], default='EUR', max_length=3), | field=looper.models.CurrencyField( | ||||
| choices=[('USD', 'USD'), ('EUR', 'EUR')], default='EUR', max_length=3 | |||||
| ), | |||||
| ), | ), | ||||
| ] | ] | ||||