aboutsummaryrefslogtreecommitdiffstats
path: root/servo/migrations/0038_auto_20151013_2302.py
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2015-10-14 23:27:04 +0300
committerFilipp Lepalaan <filipp@mac.com>2015-10-14 23:27:04 +0300
commitd7f137a7f32a987f6b921e48e441b884129b9cc3 (patch)
tree1191486dd5a8d83a998b07f773380a9ba0121da8 /servo/migrations/0038_auto_20151013_2302.py
parent1b436e4505cd91d801be956ec398d1ffa149a8b7 (diff)
downloadServo-d7f137a7f32a987f6b921e48e441b884129b9cc3.tar.gz
Servo-d7f137a7f32a987f6b921e48e441b884129b9cc3.tar.bz2
Servo-d7f137a7f32a987f6b921e48e441b884129b9cc3.zip
Cleanup
Diffstat (limited to 'servo/migrations/0038_auto_20151013_2302.py')
-rw-r--r--servo/migrations/0038_auto_20151013_2302.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/servo/migrations/0038_auto_20151013_2302.py b/servo/migrations/0038_auto_20151013_2302.py
new file mode 100644
index 0000000..034d40e
--- /dev/null
+++ b/servo/migrations/0038_auto_20151013_2302.py
@@ -0,0 +1,19 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('servo', '0037_purchaseorderitem_user_fullname'),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name='shipment',
+ name='carrier',
+ field=models.CharField(default=b'', max_length=18, verbose_name='Carrier', blank=True, choices=[(b'XAER', b'Aero 2000'), (b'XAIRBEC', b'Airborne'), (b'XAIRB', b'Airborne'), (b'XARM', b'Aramex'), (b'XOZP', b'Australia Post'), (b'XBAX', b'BAX GLOBAL PTE LTD'), (b'XCPW', b'CPW Internal'), (b'XCL', b'Citylink'), (b'XDHL', b'DHL'), (b'XDHLC', b'DHL'), (b'XDZNA', b'Danzas-AEI'), (b'XEAS', b'EAS'), (b'XEGL', b'Eagle ASIA PACIFIC HOLDINGS'), (b'XEXXN', b'Exel'), (b'XFEDE', b'FedEx'), (b'XFDE', b'FedEx Air'), (b'XGLS', b'GLS-General Logistics Systems'), (b'XHNF', b'H and Friends'), (b'XNGLN', b'Nightline'), (b'XPL', b'Parceline'), (b'XPRLA', b'Purolator'), (b'SDS', b'SDS An Post'), (b'XSNO', b'Seino Transportation Co. Ltd.'), (b'XSTE', b'Star Track Express'), (b'XTNT', b'TNT'), (b'XUPSN', b'UPS'), (b'XUTI', b'UTi (Japan) K.K.'), (b'XYMT', b'YAMATO')]),
+ ),
+ ]