SkyLearn-Test/quiz/migrations/0005_choice_choice_en_choice_choice_ru_and_more.py

64 lines
2.6 KiB
Python

# Generated by Django 4.0.8 on 2024-04-15 13:36
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('quiz', '0004_alter_question_figure_alter_quiz_description'),
]
operations = [
migrations.AddField(
model_name='choice',
name='choice_en',
field=models.CharField(help_text='Enter the choice text that you want displayed', max_length=1000, null=True, verbose_name='Content'),
),
migrations.AddField(
model_name='choice',
name='choice_ru',
field=models.CharField(help_text='Enter the choice text that you want displayed', max_length=1000, null=True, verbose_name='Content'),
),
migrations.AddField(
model_name='question',
name='content_en',
field=models.CharField(help_text='Enter the question text that you want displayed', max_length=1000, null=True, verbose_name='Question'),
),
migrations.AddField(
model_name='question',
name='content_ru',
field=models.CharField(help_text='Enter the question text that you want displayed', max_length=1000, null=True, verbose_name='Question'),
),
migrations.AddField(
model_name='question',
name='explanation_en',
field=models.TextField(blank=True, help_text='Explanation to be shown after the question has been answered.', max_length=2000, null=True, verbose_name='Explanation'),
),
migrations.AddField(
model_name='question',
name='explanation_ru',
field=models.TextField(blank=True, help_text='Explanation to be shown after the question has been answered.', max_length=2000, null=True, verbose_name='Explanation'),
),
migrations.AddField(
model_name='quiz',
name='description_en',
field=models.TextField(blank=True, help_text='A detailed description of the quiz', null=True, verbose_name='Description'),
),
migrations.AddField(
model_name='quiz',
name='description_ru',
field=models.TextField(blank=True, help_text='A detailed description of the quiz', null=True, verbose_name='Description'),
),
migrations.AddField(
model_name='quiz',
name='title_en',
field=models.CharField(max_length=60, null=True, verbose_name='Title'),
),
migrations.AddField(
model_name='quiz',
name='title_ru',
field=models.CharField(max_length=60, null=True, verbose_name='Title'),
),
]