mirror of
https://github.com/Southampton-RSG/breccia-mapper.git
synced 2026-03-03 03:17:07 +00:00
feat: configurable order for static questions
This commit is contained in:
38
people/migrations/0042_is_hardcoded_questions.py
Normal file
38
people/migrations/0042_is_hardcoded_questions.py
Normal file
@@ -0,0 +1,38 @@
|
||||
# Generated by Django 2.2.10 on 2021-03-08 17:55
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('people', '0041_add_static_org_questions'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='organisationquestion',
|
||||
name='is_hardcoded',
|
||||
field=models.BooleanField(default=False, help_text='Only the order field has any effect for a hardcoded question.'),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='organisationrelationshipquestion',
|
||||
name='is_hardcoded',
|
||||
field=models.BooleanField(default=False, help_text='Only the order field has any effect for a hardcoded question.'),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='personquestion',
|
||||
name='is_hardcoded',
|
||||
field=models.BooleanField(default=False, help_text='Only the order field has any effect for a hardcoded question.'),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='relationshipquestion',
|
||||
name='is_hardcoded',
|
||||
field=models.BooleanField(default=False, help_text='Only the order field has any effect for a hardcoded question.'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='personanswerset',
|
||||
name='job_title',
|
||||
field=models.CharField(blank=True, help_text='Contractual job title', max_length=255),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user