blob: 9a97a60c8c091baeffdc6daaf2afa0d7ae2f79a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# -*- coding: utf-8 -*-
# Generated by Django 1.10 on 2019-04-24 10:41
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('yaksh', '0014_release_0_9_1'),
]
operations = [
migrations.AddField(
model_name='course',
name='view_grade',
field=models.BooleanField(default=False),
),
migrations.AddField(
model_name='learningmodule',
name='check_prerequisite_passes',
field=models.BooleanField(default=False),
),
]
|