misc: add missing migrations on lingo app (#18320)

This commit is contained in:
Lauréline Guérin 2020-01-24 10:21:27 +01:00
parent 4e6a7f4a5d
commit cfdaeaf94d
No known key found for this signature in database
GPG Key ID: 1FAB9B9B4F93D473
1 changed files with 26 additions and 1 deletions

View File

@ -2,7 +2,7 @@
# Generated by Django 1.11.18 on 2019-05-14 12:02
from __future__ import unicode_literals
from django.db import migrations
from django.db import migrations, models
import jsonfield.fields
@ -18,4 +18,29 @@ class Migration(migrations.Migration):
name='transaction_options',
field=jsonfield.fields.JSONField(blank=True, default=dict, verbose_name='Transaction Options'),
),
migrations.AlterField(
model_name='paymentbackend',
name='service',
field=models.CharField(choices=[('dummy', 'Dummy (for tests)'), ('systempayv2', 'systempay (Banque Populaire)'), ('sips', 'SIPS (Atos, France)'), ('sips2', 'SIPS (Atos, other countries)'), ('spplus', "SP+ (Caisse d'epargne)"), ('ogone', 'Ingenico (formerly Ogone)'), ('paybox', 'Paybox'), ('payzen', 'PayZen'), ('tipi', 'PayFiP/TIPI Régie'), ('payfip_ws', 'PayFiP Régie Web-Service')], 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.tipi.budget.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),
),
]