# Generated by Django 1.11.18 on 2019-05-14 12:02 from django.db import migrations, models from django.db.models import JSONField from combo.apps.lingo.models import SERVICES class Migration(migrations.Migration): dependencies = [ ('lingo', '0036_auto_20190426_1202'), ] operations = [ migrations.AddField( model_name='regie', name='transaction_options', field=JSONField(blank=True, default=dict, verbose_name='Transaction Options'), ), migrations.AlterField( model_name='paymentbackend', name='service', field=models.CharField(choices=SERVICES, max_length=64, verbose_name='Payment Service'), ), migrations.AlterField( model_name='tipipaymentformcell', name='control_protocol', field=models.CharField( choices=[('pesv2', 'Indigo/PES v2'), ('rolmre', 'ROLMRE')], default='pesv2', max_length=8, verbose_name='Control protocol', ), ), migrations.AlterField( model_name='tipipaymentformcell', name='regies', field=models.CharField( help_text='Values separated by commas. It is possible to add a label after a regie identifier. Example: "1234 - Regie A,5678 - Regie B"', max_length=256, verbose_name='Regies', ), ), migrations.AlterField( model_name='tipipaymentformcell', name='url', field=models.URLField( default='https://www.payfip.gouv.fr/tpa/paiement.web', verbose_name='TIPI payment service URL', ), ), migrations.AlterField( model_name='transactionoperation', name='kind', field=models.CharField( choices=[('validation', 'Validation'), ('cancellation', 'Cancellation')], max_length=65 ), ), ]