This commit is contained in:
Ross
2021-02-06 14:33:33 +00:00
parent d4b0ad6985
commit 666ec9013a
12 changed files with 205 additions and 80 deletions
@@ -0,0 +1,18 @@
# Generated by Django 3.1.3 on 2021-02-06 09:05
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('rapids', '0011_auto_20210205_1056'),
]
operations = [
migrations.AlterField(
model_name='rapid',
name='open_access',
field=models.BooleanField(default=True, help_text='If a question should be freely available to browse'),
),
]
+1 -1
View File
@@ -168,7 +168,7 @@ class Rapid(models.Model):
help_text='Question has been scrapped and will not be shown')
open_access = models.BooleanField(
help_text="If an question should be freely available to browse", default=True
help_text="If a question should be freely available to browse", default=True
)