aboutsummaryrefslogtreecommitdiffstats
path: root/servo/migrations/0026_auto_20150826_1323.py
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2015-09-03 11:01:19 +0300
committerFilipp Lepalaan <filipp@mac.com>2015-09-03 11:01:19 +0300
commitb3e3941e811b23cc681945da1b1e26c818f9ace4 (patch)
treec53ce9d51e220c066b78f149a6fed0e3a1b060cc /servo/migrations/0026_auto_20150826_1323.py
parentabe994c0c2b73f1670496e6687aae19b5bb9eb79 (diff)
downloadServo-b3e3941e811b23cc681945da1b1e26c818f9ace4.tar.gz
Servo-b3e3941e811b23cc681945da1b1e26c818f9ace4.tar.bz2
Servo-b3e3941e811b23cc681945da1b1e26c818f9ace4.zip
Removed location logos
Diffstat (limited to 'servo/migrations/0026_auto_20150826_1323.py')
-rw-r--r--servo/migrations/0026_auto_20150826_1323.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/servo/migrations/0026_auto_20150826_1323.py b/servo/migrations/0026_auto_20150826_1323.py
new file mode 100644
index 0000000..fbad85d
--- /dev/null
+++ b/servo/migrations/0026_auto_20150826_1323.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', '0025_auto_20150815_0921'),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name='productcategory',
+ name='title',
+ field=models.CharField(default='New Category', unique=True, max_length=255),
+ ),
+ ]