Initial commit
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
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,
|
||||
),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user