Changeset View
Changeset View
Standalone View
Standalone View
looper/migrations/0039_planvar_ordering.py
| # Generated by Django 2.1.2 on 2018-10-09 10:17 | # Generated by Django 2.1.2 on 2018-10-09 10:17 | ||||
| from django.db import migrations | from django.db import migrations | ||||
| class Migration(migrations.Migration): | class Migration(migrations.Migration): | ||||
| dependencies = [ | dependencies = [ | ||||
| ('looper', '0038_drop_transactionevent'), | ('looper', '0038_drop_transactionevent'), | ||||
| ] | ] | ||||
| operations = [ | operations = [ | ||||
| migrations.AlterModelOptions( | migrations.AlterModelOptions( | ||||
| name='planvariation', | name='planvariation', | ||||
| options={'ordering': ('-is_active', 'currency', '-price_in_cents', 'collection_method')}, | options={ | ||||
| 'ordering': ('-is_active', 'currency', '-price_in_cents', 'collection_method') | |||||
| }, | |||||
| ), | ), | ||||
| ] | ] | ||||