Save audiobook project funding info in the model.
[wolnelektury.git] / src / catalogue / migrations / 0030_collection_role.py
1 # Generated by Django 2.2.16 on 2020-09-18 13:29
2
3 from django.db import migrations, models
4
5
6 class Migration(migrations.Migration):
7
8     dependencies = [
9         ('catalogue', '0029_auto_20200414_1516'),
10     ]
11
12     operations = [
13         migrations.AddField(
14             model_name='collection',
15             name='role',
16             field=models.CharField(blank=True, choices=[('', '–'), ('recommend', 'recommended')], db_index=True, max_length=128),
17         ),
18     ]