19 lines
699 B
Python
19 lines
699 B
Python
|
# Generated by Django 3.2.5 on 2021-11-28 06:26
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('app', '0033_auto_20211128_0551'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='person',
|
||
|
name='gmba_function',
|
||
|
field=models.TextField(blank=True, choices=[('', ''), ('Involved scientist', 'Involved scientist'), ('Involved scientist\nSteering committee', 'Involved scientist\nSteering committee'), ('Network', 'Network'), ('Newsletter only', 'Newsletter only'), ('Steering committee\nInvolved scientist', 'Steering committee\nInvolved scientist')], null=True),
|
||
|
),
|
||
|
]
|