From 9b98de36b2354ce8d5414908ce62d9c665ebb89b Mon Sep 17 00:00:00 2001 From: ankitjavalkar Date: Mon, 20 Mar 2017 19:09:08 +0530 Subject: Check in migration file to add field fixed_question_order to questionpaper --- .../0002_questionpaper_fixed_question_order.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 yaksh/migrations/0002_questionpaper_fixed_question_order.py (limited to 'yaksh/migrations') diff --git a/yaksh/migrations/0002_questionpaper_fixed_question_order.py b/yaksh/migrations/0002_questionpaper_fixed_question_order.py new file mode 100644 index 0000000..3cc46ed --- /dev/null +++ b/yaksh/migrations/0002_questionpaper_fixed_question_order.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9.5 on 2017-03-20 13:32 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('yaksh', '0001_initial'), + ] + + operations = [ + migrations.AddField( + model_name='questionpaper', + name='fixed_question_order', + field=models.CharField(blank=True, max_length=255), + ), + ] -- cgit