Changeset View
Changeset View
Standalone View
Standalone View
looper/migrations/0046_c2u_paymentmethod_unique.py
| # Generated by Django 2.1.2 on 2018-10-16 13:27 | # Generated by Django 2.1.2 on 2018-10-16 13:27 | ||||
| from django.conf import settings | from django.conf import settings | ||||
| from django.db import migrations | from django.db import migrations | ||||
| class Migration(migrations.Migration): | class Migration(migrations.Migration): | ||||
| dependencies = [ | dependencies = [ | ||||
| migrations.swappable_dependency(settings.AUTH_USER_MODEL), | migrations.swappable_dependency(settings.AUTH_USER_MODEL), | ||||
| ('looper', '0045_customer_to_user_gateway'), | ('looper', '0045_customer_to_user_gateway'), | ||||
| ] | ] | ||||
| operations = [ | operations = [ | ||||
| migrations.AlterUniqueTogether( | migrations.AlterUniqueTogether( | ||||
| name='paymentmethod', | name='paymentmethod', unique_together={('gateway', 'token', 'user')}, | ||||
| unique_together={('gateway', 'token', 'user')}, | |||||
| ), | ), | ||||
| ] | ] | ||||