2018-08-11 23:09:48 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Generated by Django 1.10.7 on 2018-08-11 23:03
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
2019-11-04 16:55:03 +00:00
|
|
|
dependencies = [("cotisations", "0030_custom_payment")]
|
2018-08-11 23:09:48 +00:00
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AddField(
|
2019-11-04 16:55:03 +00:00
|
|
|
model_name="comnpaypayment",
|
|
|
|
name="production",
|
|
|
|
field=models.BooleanField(
|
|
|
|
default=True,
|
|
|
|
verbose_name="Production mode enabled (production url, instead of homologation)",
|
|
|
|
),
|
|
|
|
)
|
2018-08-11 23:09:48 +00:00
|
|
|
]
|