Changeset View
Changeset View
Standalone View
Standalone View
looper/migrations/0017_paymeth_token_unique.py
| # Generated by Django 2.1.1 on 2018-09-26 13:40 | # Generated by Django 2.1.1 on 2018-09-26 13:40 | ||||
| from django.db import migrations | from django.db import migrations | ||||
| class Migration(migrations.Migration): | class Migration(migrations.Migration): | ||||
| dependencies = [ | dependencies = [ | ||||
| ('looper', '0016_customer_blank_instead_of_nullable'), | ('looper', '0016_customer_blank_instead_of_nullable'), | ||||
| ] | ] | ||||
| operations = [ | operations = [ | ||||
| migrations.AlterUniqueTogether( | migrations.AlterUniqueTogether( | ||||
| name='paymentmethod', | name='paymentmethod', unique_together={('gateway', 'token', 'customer')}, | ||||
| unique_together={('gateway', 'token', 'customer')}, | |||||
| ), | ), | ||||
| ] | ] | ||||