summaryrefslogtreecommitdiff
path: root/yaksh/migrations
diff options
context:
space:
mode:
authormaheshgudi2017-11-14 20:01:56 +0530
committermaheshgudi2017-11-15 18:18:46 +0530
commit1feb6cba909f903966c6fa11a9feff1b3f6bdcb9 (patch)
treed813de938387c8500a2293a2318effad12e881da /yaksh/migrations
parent29492969ec1c2bcac568909cb0f25dff8aab63a9 (diff)
downloadonline_test-1feb6cba909f903966c6fa11a9feff1b3f6bdcb9.tar.gz
online_test-1feb6cba909f903966c6fa11a9feff1b3f6bdcb9.tar.bz2
online_test-1feb6cba909f903966c6fa11a9feff1b3f6bdcb9.zip
Update Migration files and version for release version 0.7.
Diffstat (limited to 'yaksh/migrations')
-rw-r--r--yaksh/migrations/0008_release_0_7_0.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/yaksh/migrations/0008_release_0_7_0.py b/yaksh/migrations/0008_release_0_7_0.py
new file mode 100644
index 0000000..827302c
--- /dev/null
+++ b/yaksh/migrations/0008_release_0_7_0.py
@@ -0,0 +1,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),
+ ),
+ ]