diff options
author | Filipp Lepalaan <filipp@mac.com> | 2021-05-19 20:27:02 +0300 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2021-05-19 20:27:02 +0300 |
commit | ce8012b7e4651eb3fa09849c3cef6fd027da87b6 (patch) | |
tree | 249ecb4099ca6784a3dfb677f45790c9dec44953 /servo/migrations | |
parent | 10e38bda7101f142a89ca0a8c935a74602411a6f (diff) | |
download | Servo-ce8012b7e4651eb3fa09849c3cef6fd027da87b6.tar.gz Servo-ce8012b7e4651eb3fa09849c3cef6fd027da87b6.tar.bz2 Servo-ce8012b7e4651eb3fa09849c3cef6fd027da87b6.zip |
Make note type field editable
Diffstat (limited to 'servo/migrations')
-rw-r--r-- | servo/migrations/0006_auto_20210519_1925.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/servo/migrations/0006_auto_20210519_1925.py b/servo/migrations/0006_auto_20210519_1925.py new file mode 100644 index 0000000..8d20c84 --- /dev/null +++ b/servo/migrations/0006_auto_20210519_1925.py @@ -0,0 +1,23 @@ +# Generated by Django 3.2.2 on 2021-05-19 17:25 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('servo', '0005_auto_20210518_1745'), + ] + + operations = [ + migrations.AlterField( + model_name='note', + name='body', + field=models.TextField(verbose_name='Note'), + ), + migrations.AlterField( + model_name='note', + name='type', + field=models.IntegerField(blank=True, choices=[(0, "Technician's Note"), (5, "Customer's Note"), (1, 'Customer Reported Issue'), (4, 'Verified Verified Issue'), (3, 'Diagnosis'), (2, 'Escalation')], default=0, verbose_name='Type'), + ), + ] |