mirror of
https://github.com/Southampton-RSG/breccia-mapper.git
synced 2026-03-03 03:17:07 +00:00
feat(people): Allow people to describe relationships
Creating a relationship requires answering each of the relationship questions resolve #2 partial #5
This commit is contained in:
18
people/migrations/0007_relationship_question_answers.py
Normal file
18
people/migrations/0007_relationship_question_answers.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 2.2.10 on 2020-02-20 13:47
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('people', '0006_relationship_questions_order'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='relationship',
|
||||
name='question_answers',
|
||||
field=models.ManyToManyField(to='people.RelationshipQuestionChoice'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user