X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/7e113c61d336d677b96ff0ed55a5f81eb2b80d53..65c9feda79d2b2c94cb7dcd561318a83fd796f0a:/src/club/migrations/0010_auto_20190529_0946.py diff --git a/src/club/migrations/0010_auto_20190529_0946.py b/src/club/migrations/0010_auto_20190529_0946.py new file mode 100644 index 000000000..77f13dea4 --- /dev/null +++ b/src/club/migrations/0010_auto_20190529_0946.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.20 on 2019-05-29 07:46 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('club', '0009_auto_20190510_1510'), + ] + + operations = [ + migrations.AddField( + model_name='schedule', + name='email_sent', + field=models.BooleanField(default=False), + ), + migrations.AlterField( + model_name='schedule', + name='method', + field=models.CharField(choices=[('payu', 'PayU'), ('payu-re', 'PayU (płatność odnawialna)')], max_length=255, verbose_name='method'), + ), + ]