|
@@ -0,0 +1,21 @@
|
|
|
+# -*- coding: utf-8 -*-
|
|
|
+# Generated by Django 1.11.2 on 2017-09-02 20:12
|
|
|
+from __future__ import unicode_literals
|
|
|
+
|
|
|
+import django.core.validators
|
|
|
+from django.db import migrations, models
|
|
|
+
|
|
|
+
|
|
|
+class Migration(migrations.Migration):
|
|
|
+
|
|
|
+ dependencies = [
|
|
|
+ ('banking', '0007_paymentupdate_created'),
|
|
|
+ ]
|
|
|
+
|
|
|
+ operations = [
|
|
|
+ migrations.AddField(
|
|
|
+ model_name='paymentupdate',
|
|
|
+ name='month_day',
|
|
|
+ field=models.PositiveIntegerField(blank=True, null=True, validators=[django.core.validators.MinValueValidator(1), django.core.validators.MaxValueValidator(25)], verbose_name='Jour souhaité de prélèvement'),
|
|
|
+ ),
|
|
|
+ ]
|