aboutsummaryrefslogtreecommitdiffstats
path: root/servo/migrations/0037_purchaseorderitem_user_fullname.py
diff options
context:
space:
mode:
Diffstat (limited to 'servo/migrations/0037_purchaseorderitem_user_fullname.py')
-rw-r--r--servo/migrations/0037_purchaseorderitem_user_fullname.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/servo/migrations/0037_purchaseorderitem_user_fullname.py b/servo/migrations/0037_purchaseorderitem_user_fullname.py
new file mode 100644
index 0000000..0e5993f
--- /dev/null
+++ b/servo/migrations/0037_purchaseorderitem_user_fullname.py
@@ -0,0 +1,19 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+
+from django.db import models, migrations
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('servo', '0036_purchaseorderitem_purchase_order_ref'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='purchaseorderitem',
+ name='user_fullname',
+ field=models.CharField(default=b'', max_length=256, editable=False),
+ ),
+ ]