diff options
author | ankitjavalkar | 2020-02-04 16:43:46 +0530 |
---|---|---|
committer | ankitjavalkar | 2020-02-05 11:10:06 +0530 |
commit | 5c4f432bd004364fc5114912730786f0536cde9a (patch) | |
tree | 7abb7fd0eb62deb7a85066757e2b2194ce651655 /yaksh | |
parent | a76594e4b78599790a01d059f7a7380185e340a3 (diff) | |
download | online_test-5c4f432bd004364fc5114912730786f0536cde9a.tar.gz online_test-5c4f432bd004364fc5114912730786f0536cde9a.tar.bz2 online_test-5c4f432bd004364fc5114912730786f0536cde9a.zip |
Release 0.12.0 related changes
Diffstat (limited to 'yaksh')
-rw-r--r-- | yaksh/migrations/0016_release_0_12_0.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/yaksh/migrations/0016_release_0_12_0.py b/yaksh/migrations/0016_release_0_12_0.py new file mode 100644 index 0000000..74edaa5 --- /dev/null +++ b/yaksh/migrations/0016_release_0_12_0.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.21 on 2020-02-05 05:38 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('yaksh', '0015_release_0_10_0'), + ] + + operations = [ + migrations.AlterField( + model_name='question', + name='language', + field=models.CharField(choices=[('python', 'Python'), ('bash', 'Bash'), ('c', 'C Language'), ('cpp', 'C++ Language'), ('java', 'Java Language'), ('scilab', 'Scilab'), ('r', 'R')], max_length=24), + ), + ] |