From 55270ee7520256b6f77ddba24f3422d4446f3f8f Mon Sep 17 00:00:00 2001 From: Jorran Wit <jorrandewit@outlook.com> Date: Mon, 19 Dec 2016 21:28:02 +0100 Subject: [PATCH] Add not created migrations for alter fields --- theses/migrations/0006_auto_20161219_2012.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 theses/migrations/0006_auto_20161219_2012.py diff --git a/theses/migrations/0006_auto_20161219_2012.py b/theses/migrations/0006_auto_20161219_2012.py new file mode 100644 index 000000000..935f906aa --- /dev/null +++ b/theses/migrations/0006_auto_20161219_2012.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10.3 on 2016-12-19 19:12 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('theses', '0005_remove_thesislink_specialization'), + ] + + operations = [ + migrations.AlterField( + model_name='thesislink', + name='domain', + field=models.CharField(choices=[('E', 'Experimental'), ('T', 'Theoretical'), ('C', 'Computational'), ('ET', 'Exp. & Theor.'), ('EC', 'Exp. & Comp.'), ('TC', 'Theor. & Comp.'), ('ETC', 'Exp., Theor. & Comp.')], max_length=3), + ), + ] -- GitLab