mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-04 17:06:27 +00:00
c4a104b3b6
Just ran black on the whoe repository. Fix #210.
40 lines
1.2 KiB
Python
40 lines
1.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.23 on 2019-09-30 09:19
|
|
from __future__ import unicode_literals
|
|
|
|
import cotisations.payment_methods.mixins
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("cotisations", "0038_auto_20181231_1657")]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name="FreePayment",
|
|
fields=[
|
|
(
|
|
"id",
|
|
models.AutoField(
|
|
auto_created=True,
|
|
primary_key=True,
|
|
serialize=False,
|
|
verbose_name="ID",
|
|
),
|
|
),
|
|
(
|
|
"payment",
|
|
models.OneToOneField(
|
|
editable=False,
|
|
on_delete=django.db.models.deletion.CASCADE,
|
|
related_name="payment_method",
|
|
to="cotisations.Paiement",
|
|
),
|
|
),
|
|
],
|
|
options={"verbose_name": "Free payment"},
|
|
bases=(cotisations.payment_methods.mixins.PaymentMethodMixin, models.Model),
|
|
)
|
|
]
|