aboutsummaryrefslogtreecommitdiffstats
path: root/servo/migrations/0035_auto_20150930_2323.py
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2015-10-01 00:31:02 +0300
committerFilipp Lepalaan <filipp@mac.com>2015-10-01 00:31:02 +0300
commit0c6d66e7ced5f1c7843eba4221b08db79e56a021 (patch)
treec16473f761eb5d26d2a3d1a4ceb2f9f2875b44e4 /servo/migrations/0035_auto_20150930_2323.py
parentec6276e2fb2bb0785f14469bbe8eb292f4a6e6b7 (diff)
downloadServo-0c6d66e7ced5f1c7843eba4221b08db79e56a021.tar.gz
Servo-0c6d66e7ced5f1c7843eba4221b08db79e56a021.tar.bz2
Servo-0c6d66e7ced5f1c7843eba4221b08db79e56a021.zip
Inventory bug fixes
and performance enhancements
Diffstat (limited to 'servo/migrations/0035_auto_20150930_2323.py')
-rw-r--r--servo/migrations/0035_auto_20150930_2323.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/servo/migrations/0035_auto_20150930_2323.py b/servo/migrations/0035_auto_20150930_2323.py
new file mode 100644
index 0000000..bf4cd40
--- /dev/null
+++ b/servo/migrations/0035_auto_20150930_2323.py
@@ -0,0 +1,24 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+
+from django.db import models, migrations
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('servo', '0034_purchaseorderitem_sales_order'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='purchaseorderitem',
+ name='sales_order_ref',
+ field=models.CharField(default=b'', max_length=8, editable=False),
+ ),
+ migrations.AlterField(
+ model_name='purchaseorderitem',
+ name='sales_order',
+ field=models.ForeignKey(editable=False, to='servo.Order', null=True),
+ ),
+ ]