--- /dev/null
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+
+from django.db import models, migrations
+import cartridge.shop.fields
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('shop', '0002_order_callback_uuid'),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name='productoption',
+ name='type',
+ field=models.IntegerField(verbose_name='Type', choices=[(1, 'Size'), (2, 'Colour')]),
+ ),
+ migrations.AlterField(
+ model_name='productvariation',
+ name='option1',
+ field=cartridge.shop.fields.OptionField(max_length=50, null=True, verbose_name='Size'),
+ ),
+ migrations.AlterField(
+ model_name='productvariation',
+ name='option2',
+ field=cartridge.shop.fields.OptionField(max_length=50, null=True, verbose_name='Colour'),
+ ),
+ ]
# Sequence of value/name pairs for types of product options,
# eg Size, Colour. NOTE: Increasing the number of these will
# require database migrations!
-SHOP_OPTION_TYPE_CHOICES = (
- (1, "Cover condition"),
- (2, "Vinyl condition"),
- )
+#SHOP_OPTION_TYPE_CHOICES = (
+# (1, "Cover condition"),
+# (2, "Vinyl condition"),
+# )
+
+SHOP_USE_VARIATIONS = False
# Sequence of indexes from the SHOP_OPTION_TYPE_CHOICES setting that
# control how the options should be ordered in the admin,