aboutsummaryrefslogtreecommitdiffstats
path: root/servo/migrations/0030_note_type.py
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2015-09-25 20:01:46 +0300
committerFilipp Lepalaan <filipp@mac.com>2015-09-25 20:01:46 +0300
commit40bb871af86c913ffaa4235052424cc0d69211a0 (patch)
tree36eca6ff5ce27cfcebe952e943bd8b30248e9039 /servo/migrations/0030_note_type.py
parente807f83375e4f2c8b74658b22cf96e5a331f7409 (diff)
downloadServo-40bb871af86c913ffaa4235052424cc0d69211a0.tar.gz
Servo-40bb871af86c913ffaa4235052424cc0d69211a0.tar.bz2
Servo-40bb871af86c913ffaa4235052424cc0d69211a0.zip
Added type field to note
Diffstat (limited to 'servo/migrations/0030_note_type.py')
-rw-r--r--servo/migrations/0030_note_type.py19
1 files changed, 19 insertions, 0 deletions
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')]),
+ ),
+ ]