From 40bb871af86c913ffaa4235052424cc0d69211a0 Mon Sep 17 00:00:00 2001 From: Filipp Lepalaan Date: Fri, 25 Sep 2015 20:01:46 +0300 Subject: Added type field to note --- servo/migrations/0030_note_type.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 servo/migrations/0030_note_type.py (limited to 'servo/migrations/0030_note_type.py') diff --git a/servo/migrations/0030_note_type.py b/servo/migrations/0030_note_type.py new file mode 100644 index 0000000..8c2ee5e --- /dev/null +++ b/servo/migrations/0030_note_type.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import models, migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('servo', '0029_auto_20150921_1111'), + ] + + operations = [ + migrations.AddField( + model_name='note', + name='type', + field=models.IntegerField(default=0, verbose_name='Type', choices=[(0, 'Note'), (1, 'Problem'), (2, 'Escalation')]), + ), + ] -- cgit v1.2.3