24 lines
667 B
Python
24 lines
667 B
Python
# Generated by Django 3.1.1 on 2021-03-12 06:12
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('interface', '0023_ensemble_storage'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='project',
|
|
name='accept_submissions',
|
|
field=models.BooleanField(default=False, help_text='Allow media submissions from participants'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='project',
|
|
name='has_items',
|
|
field=models.BooleanField(default=True, help_text='Enable items to be added from the library'),
|
|
),
|
|
]
|