Skip to content

Commit a116df9

Browse files
committed
linted migration files
1 parent e61edcc commit a116df9

1 file changed

Lines changed: 9 additions & 7 deletions

File tree

server/api/apps/shared_models/migrations/0006_remove_subject_question_topic_question.py

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,21 @@
44

55

66
class Migration(migrations.Migration):
7-
87
dependencies = [
9-
('shared_models', '0005_quizstatistics_subject_topic_remove_tag_question_and_more'),
8+
(
9+
"shared_models",
10+
"0005_quizstatistics_subject_topic_remove_tag_question_and_more",
11+
),
1012
]
1113

1214
operations = [
1315
migrations.RemoveField(
14-
model_name='subject',
15-
name='question',
16+
model_name="subject",
17+
name="question",
1618
),
1719
migrations.AddField(
18-
model_name='topic',
19-
name='question',
20-
field=models.ManyToManyField(to='shared_models.question'),
20+
model_name="topic",
21+
name="question",
22+
field=models.ManyToManyField(to="shared_models.question"),
2123
),
2224
]

0 commit comments

Comments
 (0)