aboutsummaryrefslogtreecommitdiffstats
path: root/servo/migrations/0060_auto_20161101_1215.py
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2016-11-02 21:21:06 +0200
committerFilipp Lepalaan <filipp@mac.com>2016-11-02 21:21:06 +0200
commit5017f7b2e2e5fb5c5290340a0d103b24fc076210 (patch)
tree6f49c516df616ea75c3623221a6c4094fb33ad20 /servo/migrations/0060_auto_20161101_1215.py
parent2caa3b4076d453e868716b35e778660f6b52cbd4 (diff)
downloadServo-5017f7b2e2e5fb5c5290340a0d103b24fc076210.tar.gz
Servo-5017f7b2e2e5fb5c5290340a0d103b24fc076210.tar.bz2
Servo-5017f7b2e2e5fb5c5290340a0d103b24fc076210.zip
Added settings GSX repair status
Diffstat (limited to 'servo/migrations/0060_auto_20161101_1215.py')
-rw-r--r--servo/migrations/0060_auto_20161101_1215.py20
1 files changed, 20 insertions, 0 deletions
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),
+ ),
+ ]