|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+# -*- coding: utf-8 -*-
|
|
|
2
|
+# Generated by Django 1.9.11 on 2016-11-20 17:07
|
|
|
3
|
+from __future__ import unicode_literals
|
|
|
4
|
+
|
|
|
5
|
+from django.db import migrations
|
|
|
6
|
+import oscar.models.fields
|
|
|
7
|
+
|
|
|
8
|
+
|
|
|
9
|
+class Migration(migrations.Migration):
|
|
|
10
|
+
|
|
|
11
|
+ dependencies = [
|
|
|
12
|
+ ('offer', '0002_auto_20151210_1053'),
|
|
|
13
|
+ ]
|
|
|
14
|
+
|
|
|
15
|
+ operations = [
|
|
|
16
|
+ migrations.AlterField(
|
|
|
17
|
+ model_name='condition',
|
|
|
18
|
+ name='proxy_class',
|
|
|
19
|
+ field=oscar.models.fields.NullCharField(default=None, max_length=255, verbose_name='Custom class'),
|
|
|
20
|
+ ),
|
|
|
21
|
+ ]
|