mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-04 00:52:49 +00:00
c4a104b3b6
Just ran black on the whoe repository. Fix #210.
34 lines
1.1 KiB
Python
34 lines
1.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.23 on 2019-10-02 21:35
|
|
from __future__ import unicode_literals
|
|
|
|
import django.core.validators
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("cotisations", "0039_freepayment")]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="article",
|
|
name="duration_days",
|
|
field=models.PositiveIntegerField(
|
|
blank=True,
|
|
null=True,
|
|
validators=[django.core.validators.MinValueValidator(0)],
|
|
verbose_name="duration (in days, will be added to duration in months)",
|
|
),
|
|
),
|
|
migrations.AddField(
|
|
model_name="vente",
|
|
name="duration_days",
|
|
field=models.PositiveIntegerField(
|
|
blank=True,
|
|
null=True,
|
|
validators=[django.core.validators.MinValueValidator(0)],
|
|
verbose_name="duration (in days, will be added to duration in months)",
|
|
),
|
|
),
|
|
]
|