paypal
[wolnelektury.git] / src / club / migrations / 0029_schedule_method.py
1 # Generated by Django 2.2.19 on 2021-06-18 10:10
2
3 from django.db import migrations, models
4
5
6 class Migration(migrations.Migration):
7
8     dependencies = [
9         ('club', '0028_directdebit'),
10     ]
11
12     operations = [
13         migrations.AddField(
14             model_name='schedule',
15             name='method',
16             field=models.CharField(choices=[('payu-re', 'payu-re'), ('payu', 'payu'), ('paypal', 'paypal')], default='', max_length=32, verbose_name='method'),
17             preserve_default=False,
18         ),
19     ]