diff options
author | Filipp Lepalaan <filipp@mac.com> | 2016-11-02 21:21:06 +0200 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2016-11-02 21:21:06 +0200 |
commit | 5017f7b2e2e5fb5c5290340a0d103b24fc076210 (patch) | |
tree | 6f49c516df616ea75c3623221a6c4094fb33ad20 /servo/migrations | |
parent | 2caa3b4076d453e868716b35e778660f6b52cbd4 (diff) | |
download | Servo-5017f7b2e2e5fb5c5290340a0d103b24fc076210.tar.gz Servo-5017f7b2e2e5fb5c5290340a0d103b24fc076210.tar.bz2 Servo-5017f7b2e2e5fb5c5290340a0d103b24fc076210.zip |
Added settings GSX repair status
Diffstat (limited to 'servo/migrations')
-rw-r--r-- | servo/migrations/0058_auto_20161031_1129.py | 20 | ||||
-rw-r--r-- | servo/migrations/0059_repair_status_code.py | 20 | ||||
-rw-r--r-- | servo/migrations/0060_auto_20161101_1215.py | 20 |
3 files changed, 60 insertions, 0 deletions
diff --git a/servo/migrations/0058_auto_20161031_1129.py b/servo/migrations/0058_auto_20161031_1129.py new file mode 100644 index 0000000..84ef5e1 --- /dev/null +++ b/servo/migrations/0058_auto_20161031_1129.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10.2 on 2016-10-31 09:29 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('servo', '0057_auto_20161014_1206'), + ] + + operations = [ + migrations.AlterField( + model_name='repair', + name='confirmation', + field=models.CharField(default=b'', editable=False, max_length=15), + ), + ] diff --git a/servo/migrations/0059_repair_status_code.py b/servo/migrations/0059_repair_status_code.py new file mode 100644 index 0000000..827aa31 --- /dev/null +++ b/servo/migrations/0059_repair_status_code.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10.2 on 2016-10-31 12:29 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('servo', '0058_auto_20161031_1129'), + ] + + operations = [ + migrations.AddField( + model_name='repair', + name='status_code', + field=models.CharField(default=b'', editable=False, max_length=4), + ), + ] diff --git a/servo/migrations/0060_auto_20161101_1215.py b/servo/migrations/0060_auto_20161101_1215.py new file mode 100644 index 0000000..a206425 --- /dev/null +++ b/servo/migrations/0060_auto_20161101_1215.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10.2 on 2016-11-01 10:15 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('servo', '0059_repair_status_code'), + ] + + operations = [ + migrations.AlterField( + model_name='repair', + name='status_code', + field=models.CharField(choices=[(b'AWTP', b'Awaiting Parts'), (b'AWTR', b'Parts Allocated'), (b'BEGR', b'In Repair'), (b'RFPU', b'Ready for Pickup')], default=b'', editable=False, max_length=4), + ), + ] |