Nicer membership form.
[wolnelektury.git] / src / club / migrations / 0009_auto_20190510_1510.py
1 # -*- coding: utf-8 -*-
2 # Generated by Django 1.11.20 on 2019-05-10 13:10
3 from __future__ import unicode_literals
4
5 from django.db import migrations, models
6
7
8 class Migration(migrations.Migration):
9
10     dependencies = [
11         ('club', '0008_membership_name'),
12     ]
13
14     operations = [
15         migrations.AddField(
16             model_name='plan',
17             name='default_amount',
18             field=models.DecimalField(decimal_places=2, default=0, max_digits=10, verbose_name='default amount'),
19             preserve_default=False,
20         ),
21         migrations.AlterField(
22             model_name='plan',
23             name='min_amount',
24             field=models.DecimalField(decimal_places=2, max_digits=10, verbose_name='min amount'),
25         ),
26         migrations.AlterField(
27             model_name='schedule',
28             name='method',
29             field=models.CharField(choices=[('payu', 'PayU'), ('payu-re', 'PayU Recurring'), ('paypal', 'PayPal')], max_length=255, verbose_name='method'),
30         ),
31     ]