Skip to content

Commit

Permalink
Merge pull request #253 from ankitjavalkar/hotfix-20mar
Browse files Browse the repository at this point in the history
Check in migration file to add field fixed_question_order to questionpaper
  • Loading branch information
ankitjavalkar authored Mar 20, 2017
2 parents a522432 + 9b98de3 commit 49a4cba
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions yaksh/migrations/0002_questionpaper_fixed_question_order.py
Original file line number Diff line number Diff line change
@@ -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),
),
]

0 comments on commit 49a4cba

Please sign in to comment.