summaryrefslogtreecommitdiff
path: root/saleor/userprofile
diff options
context:
space:
mode:
authormichal <michal.sipa@mirumee.com>2017-09-15 14:46:34 +0200
committermichal <michal.sipa@mirumee.com>2017-09-18 13:47:29 +0200
commitafcc95ad6cbd45404d7ce5ef76e3ace59615c1bc (patch)
treea5b3164b64b577d47d492db722d97341bba5cfda /saleor/userprofile
parenta240346776c5d2014a275c18fadf18d7324d498b (diff)
downloadsaleor-frontend-afcc95ad6cbd45404d7ce5ef76e3ace59615c1bc.tar.gz
saleor-frontend-afcc95ad6cbd45404d7ce5ef76e3ace59615c1bc.tar.bz2
saleor-frontend-afcc95ad6cbd45404d7ce5ef76e3ace59615c1bc.zip
Add migrations
Add missing migration files.
Diffstat (limited to 'saleor/userprofile')
-rw-r--r--saleor/userprofile/migrations/0010_auto_20170907_0909.py19
-rw-r--r--saleor/userprofile/migrations/0011_auto_20170912_0401.py19
2 files changed, 38 insertions, 0 deletions
diff --git a/saleor/userprofile/migrations/0010_auto_20170907_0909.py b/saleor/userprofile/migrations/0010_auto_20170907_0909.py
new file mode 100644
index 00000000..3182a20d
--- /dev/null
+++ b/saleor/userprofile/migrations/0010_auto_20170907_0909.py
@@ -0,0 +1,19 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.11.4 on 2017-09-07 14:09
+from __future__ import unicode_literals
+
+from django.db import migrations
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('userprofile', '0009_auto_20170206_0407'),
+ ]
+
+ operations = [
+ migrations.AlterModelOptions(
+ name='user',
+ options={'permissions': (('view_user', 'Can View User'), ('edit_user', 'Can Edit User')), 'verbose_name': 'user', 'verbose_name_plural': 'users'},
+ ),
+ ]
diff --git a/saleor/userprofile/migrations/0011_auto_20170912_0401.py b/saleor/userprofile/migrations/0011_auto_20170912_0401.py
new file mode 100644
index 00000000..9d33c928
--- /dev/null
+++ b/saleor/userprofile/migrations/0011_auto_20170912_0401.py
@@ -0,0 +1,19 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.11.4 on 2017-09-12 09:01
+from __future__ import unicode_literals
+
+from django.db import migrations
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('userprofile', '0010_auto_20170907_0909'),
+ ]
+
+ operations = [
+ migrations.AlterModelOptions(
+ name='user',
+ options={'permissions': (('view_user', 'Can view users'), ('edit_user', 'Can edit users')), 'verbose_name': 'user', 'verbose_name_plural': 'users'},
+ ),
+ ]