diff options
author | adityacp | 2017-03-31 16:40:35 +0530 |
---|---|---|
committer | adityacp | 2017-04-10 16:14:40 +0530 |
commit | 32911e9a094e7f91ca132f98927d110049c99401 (patch) | |
tree | 82e73f5dcd295394f9de5955cd379a2be4d35d31 /yaksh/migrations | |
parent | bd8c2c653a06e29dcf7a1a0103f7735f46f0c488 (diff) | |
download | online_test-32911e9a094e7f91ca132f98927d110049c99401.tar.gz online_test-32911e9a094e7f91ca132f98927d110049c99401.tar.bz2 online_test-32911e9a094e7f91ca132f98927d110049c99401.zip |
Add new migrations for assignment upload
Diffstat (limited to 'yaksh/migrations')
-rw-r--r-- | yaksh/migrations/0005_auto_20170410_1024.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/yaksh/migrations/0005_auto_20170410_1024.py b/yaksh/migrations/0005_auto_20170410_1024.py new file mode 100644 index 0000000..13b4cce --- /dev/null +++ b/yaksh/migrations/0005_auto_20170410_1024.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9.5 on 2017-04-10 10:24 +from __future__ import unicode_literals + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('yaksh', '0004_auto_20170331_0632'), + ] + + operations = [ + migrations.AddField( + model_name='assignmentupload', + name='question_paper', + field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='yaksh.QuestionPaper'), + ), + migrations.AlterField( + model_name='hooktestcase', + name='hook_code', + field=models.TextField(default='def check_answer(user_answer):\n \'\'\' Evaluates user answer to return -\n success - Boolean, indicating if code was executed correctly\n mark_fraction - Float, indicating fraction of the\n weight to a test case\n error - String, error message if success is false\n\n In case of assignment upload there will be no user answer \'\'\'\n\n success = False\n err = "Incorrect Answer" # Please make this more specific\n mark_fraction = 0.0\n\n # write your code here\n\n return success, err, mark_fraction\n\n'), + ), + ] |