remove the banner
[wolnelektury.git] / src / club / migrations / 0039_auto_20220421_0109.py
1 # Generated by Django 2.2.27 on 2022-04-20 23:09
2
3 from django.db import migrations, models
4
5
6 class Migration(migrations.Migration):
7
8     dependencies = [
9         ('club', '0038_payuorder_created_at'),
10     ]
11
12     operations = [
13         migrations.AlterField(
14             model_name='payuorder',
15             name='status',
16             field=models.CharField(blank=True, choices=[('PENDING', 'Pending'), ('WAITING_FOR_CONFIRMATION', 'Waiting for confirmation'), ('COMPLETED', 'Completed'), ('CANCELED', 'Canceled'), ('REJECTED', 'Rejected'), ('ERR-INVALID_TOKEN', 'Invalid token')], max_length=128),
17         ),
18     ]