Projet

Général

Profil

0001-lingo-fix-missing-migration-46503.patch

Valentin Deniaud, 30 septembre 2020 18:19

Télécharger (1,64 ko)

Voir les différences:

Subject: [PATCH 1/4] lingo: fix missing migration (#46503)

 combo/apps/lingo/migrations/0037_regie_transaction_options.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
combo/apps/lingo/migrations/0037_regie_transaction_options.py
5 5
from django.db import migrations, models
6 6
import jsonfield.fields
7 7

  
8
from combo.apps.lingo.models import SERVICES
9

  
8 10

  
9 11
class Migration(migrations.Migration):
10 12

  
......
21 23
        migrations.AlterField(
22 24
            model_name='paymentbackend',
23 25
            name='service',
24
            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'),
26
            field=models.CharField(choices=SERVICES, max_length=64, verbose_name='Payment Service'),
25 27
        ),
26 28
        migrations.AlterField(
27 29
            model_name='tipipaymentformcell',
28
-