blob: 827302c1e252fed6eb1bb8b024ed51d7fc39d9ec (
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.9.5 on 2017-11-14 14:29
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('yaksh', '0007_alter_profile_activation_key'),
]
operations = [
migrations.AddField(
model_name='answerpaper',
name='questions_order',
field=models.TextField(blank=True, default=''),
),
migrations.AlterField(
model_name='question',
name='snippet',
field=models.TextField(blank=True),
),
]
|