X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/f39c00ef647a7f625d9bd61c570b89d7b9762c61..97c8c6d7c7961976172bece182832d01c9c0fc4b:/src/club/migrations/0014_club.py diff --git a/src/club/migrations/0014_club.py b/src/club/migrations/0014_club.py new file mode 100644 index 000000000..1183bc3e0 --- /dev/null +++ b/src/club/migrations/0014_club.py @@ -0,0 +1,23 @@ +# Generated by Django 2.2.6 on 2019-11-20 08:26 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('club', '0013_populate_payed_at'), + ] + + operations = [ + migrations.CreateModel( + name='Club', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('min_amount', models.IntegerField(verbose_name='minimum amount')), + ('min_for_year', models.IntegerField(verbose_name='minimum amount for year')), + ('single_amounts', models.CharField(max_length=255, verbose_name='proposed amounts for single payment')), + ('monthly_amounts', models.CharField(max_length=255, verbose_name='proposed amounts for monthly payments')), + ], + ), + ]