aboutsummaryrefslogtreecommitdiffstats
path: root/servo/migrations/0003_auto_20141217_0029.py
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2015-08-04 10:11:24 +0300
committerFilipp Lepalaan <filipp@mac.com>2015-08-04 10:11:24 +0300
commit63b0fc6269b38edf7234b9f151b80d81f614c0a3 (patch)
tree555de3068f33f8dddb4619349bbea7d9b7c822fd /servo/migrations/0003_auto_20141217_0029.py
downloadServo-63b0fc6269b38edf7234b9f151b80d81f614c0a3.tar.gz
Servo-63b0fc6269b38edf7234b9f151b80d81f614c0a3.tar.bz2
Servo-63b0fc6269b38edf7234b9f151b80d81f614c0a3.zip
Initial commit
First public commit
Diffstat (limited to 'servo/migrations/0003_auto_20141217_0029.py')
-rw-r--r--servo/migrations/0003_auto_20141217_0029.py40
1 files changed, 40 insertions, 0 deletions
diff --git a/servo/migrations/0003_auto_20141217_0029.py b/servo/migrations/0003_auto_20141217_0029.py
new file mode 100644
index 0000000..cdab1af
--- /dev/null
+++ b/servo/migrations/0003_auto_20141217_0029.py
@@ -0,0 +1,40 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+
+from django.db import models, migrations
+import django.db.models.deletion
+from django.conf import settings
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('servo', '0002_auto_20141123_2358'),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name='customer',
+ name='is_company',
+ field=models.BooleanField(default=False, help_text='Companies can contain contacts', verbose_name='company'),
+ preserve_default=True,
+ ),
+ migrations.AlterField(
+ model_name='device',
+ name='warranty_status',
+ field=models.CharField(default=b'NA', max_length=3, verbose_name='Warranty Status', choices=[(b'QP', 'Quality Program'), (b'CS', 'Customer Satisfaction'), (b'ALW', 'Apple Limited Warranty'), (b'APP', 'AppleCare Protection Plan'), (b'CC', 'Custom Bid Contracts'), (b'CBC', 'Custom Bid Contracts'), (b'WTY', "3'rd Party Warranty"), (b'OOW', 'Out Of Warranty (No Coverage)'), (b'NA', 'Unknown')]),
+ preserve_default=True,
+ ),
+ migrations.AlterField(
+ model_name='order',
+ name='closed_by',
+ field=models.ForeignKey(related_name='closed_orders', on_delete=django.db.models.deletion.SET_NULL, to=settings.AUTH_USER_MODEL, null=True),
+ preserve_default=True,
+ ),
+ migrations.AlterField(
+ model_name='product',
+ name='component_code',
+ field=models.CharField(default=b'', max_length=1, verbose_name='component group', blank=True, choices=[(b'0', b'General'), (b'1', b'Visual'), (b'2', b'Displays'), (b'3', b'Mass Storage'), (b'4', b'Input Devices'), (b'5', b'Boards'), (b'6', b'Power'), (b'7', b'Printer'), (b'8', b'Multi-function Device'), (b'9', b'Communication Devices'), (b'A', b'Share'), (b'B', b'iPhone'), (b'E', b'iPod'), (b'F', b'iPad'), (b'G', b'Beats Products')]),
+ preserve_default=True,
+ ),
+ ]