diff options
author | Filipp Lepalaan <filipp@mac.com> | 2015-09-25 20:01:46 +0300 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2015-09-25 20:01:46 +0300 |
commit | 40bb871af86c913ffaa4235052424cc0d69211a0 (patch) | |
tree | 36eca6ff5ce27cfcebe952e943bd8b30248e9039 /servo/migrations | |
parent | e807f83375e4f2c8b74658b22cf96e5a331f7409 (diff) | |
download | Servo-40bb871af86c913ffaa4235052424cc0d69211a0.tar.gz Servo-40bb871af86c913ffaa4235052424cc0d69211a0.tar.bz2 Servo-40bb871af86c913ffaa4235052424cc0d69211a0.zip |
Added type field to note
Diffstat (limited to 'servo/migrations')
-rw-r--r-- | servo/migrations/0030_note_type.py | 19 |
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')]), + ), + ] |