24 lines
588 B
Python
24 lines
588 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("exams", "0010_questiongroup_question_group_and_more"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="examset",
|
|
name="access_level",
|
|
field=models.CharField(
|
|
choices=[
|
|
("free", "Free"),
|
|
("premium", "Lifetime Premium"),
|
|
],
|
|
db_index=True,
|
|
default="free",
|
|
max_length=20,
|
|
),
|
|
),
|
|
]
|