Nicer membership form.
[wolnelektury.git] / src / club / migrations / 0009_auto_20190510_1510.py
diff --git a/src/club/migrations/0009_auto_20190510_1510.py b/src/club/migrations/0009_auto_20190510_1510.py
new file mode 100644 (file)
index 0000000..57a110f
--- /dev/null
@@ -0,0 +1,31 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.11.20 on 2019-05-10 13:10
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('club', '0008_membership_name'),
+    ]
+
+    operations = [
+        migrations.AddField(
+            model_name='plan',
+            name='default_amount',
+            field=models.DecimalField(decimal_places=2, default=0, max_digits=10, verbose_name='default amount'),
+            preserve_default=False,
+        ),
+        migrations.AlterField(
+            model_name='plan',
+            name='min_amount',
+            field=models.DecimalField(decimal_places=2, max_digits=10, verbose_name='min amount'),
+        ),
+        migrations.AlterField(
+            model_name='schedule',
+            name='method',
+            field=models.CharField(choices=[('payu', 'PayU'), ('payu-re', 'PayU Recurring'), ('paypal', 'PayPal')], max_length=255, verbose_name='method'),
+        ),
+    ]