diff options
author | Filipp Lepalaan <filipp@mac.com> | 2021-05-24 12:53:13 +0300 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2021-05-24 12:53:13 +0300 |
commit | 80d05a3ba16c09e356a699ab1b1db837f785d313 (patch) | |
tree | 40e74baae7ad04b46b342f978eb3c4456d98df3c /servo/migrations | |
parent | abfb352e0c735e1b86b78d3160693eb713adbdfc (diff) | |
download | Servo-80d05a3ba16c09e356a699ab1b1db837f785d313.tar.gz Servo-80d05a3ba16c09e356a699ab1b1db837f785d313.tar.bz2 Servo-80d05a3ba16c09e356a699ab1b1db837f785d313.zip |
Added currency
Diffstat (limited to 'servo/migrations')
-rw-r--r-- | servo/migrations/0007_auto_20210524_0921.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/servo/migrations/0007_auto_20210524_0921.py b/servo/migrations/0007_auto_20210524_0921.py new file mode 100644 index 0000000..f518f6a --- /dev/null +++ b/servo/migrations/0007_auto_20210524_0921.py @@ -0,0 +1,23 @@ +# Generated by Django 3.2.2 on 2021-05-24 07:21 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('servo', '0006_auto_20210519_1925'), + ] + + operations = [ + migrations.AddField( + model_name='product', + name='currency', + field=models.CharField(default='', editable=False, max_length=3), + ), + 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, 'Technician Verified Issue'), (3, 'Diagnosis'), (2, 'Escalation')], default=0, verbose_name='Type'), + ), + ] |