From 022c16bbc2b45377f4ecb6610316f7d7968aea37 Mon Sep 17 00:00:00 2001
From: Jean-Baptiste <bleme@pm.me>
Date: Tue, 17 Sep 2019 13:42:36 +0200
Subject: [PATCH] update: fix migrations files

---
 ...913_1402.py => 0002_auto_20190917_1141.py} |  8 ++++++-
 .../migrations/0002_profile_urlid.py          | 21 -------------------
 .../migrations/0003_profile_urlid.py          | 21 -------------------
 3 files changed, 7 insertions(+), 43 deletions(-)
 rename djangoldp_profile/migrations/{0002_auto_20190913_1402.py => 0002_auto_20190917_1141.py} (68%)
 delete mode 100644 djangoldp_profile/migrations/0002_profile_urlid.py
 delete mode 100644 djangoldp_profile/migrations/0003_profile_urlid.py

diff --git a/djangoldp_profile/migrations/0002_auto_20190913_1402.py b/djangoldp_profile/migrations/0002_auto_20190917_1141.py
similarity index 68%
rename from djangoldp_profile/migrations/0002_auto_20190913_1402.py
rename to djangoldp_profile/migrations/0002_auto_20190917_1141.py
index d75cc6c..bdb9602 100644
--- a/djangoldp_profile/migrations/0002_auto_20190913_1402.py
+++ b/djangoldp_profile/migrations/0002_auto_20190917_1141.py
@@ -1,10 +1,11 @@
 # -*- coding: utf-8 -*-
-# Generated by Django 1.11.20 on 2019-09-13 14:02
+# Generated by Django 1.11 on 2019-09-17 11:41
 from __future__ import unicode_literals
 
 from django.conf import settings
 from django.db import migrations, models
 import django.db.models.deletion
+import djangoldp.fields
 
 
 class Migration(migrations.Migration):
@@ -14,6 +15,11 @@ class Migration(migrations.Migration):
     ]
 
     operations = [
+        migrations.AddField(
+            model_name='profile',
+            name='urlid',
+            field=djangoldp.fields.LDPUrlField(blank=True, null=True, unique=True),
+        ),
         migrations.AlterField(
             model_name='profile',
             name='user',
diff --git a/djangoldp_profile/migrations/0002_profile_urlid.py b/djangoldp_profile/migrations/0002_profile_urlid.py
deleted file mode 100644
index 8514bb7..0000000
--- a/djangoldp_profile/migrations/0002_profile_urlid.py
+++ /dev/null
@@ -1,21 +0,0 @@
-# -*- coding: utf-8 -*-
-# Generated by Django 1.11 on 2019-09-17 11:22
-from __future__ import unicode_literals
-
-from django.db import migrations
-import djangoldp.fields
-
-
-class Migration(migrations.Migration):
-
-    dependencies = [
-        ('djangoldp_profile', '0001_initial'),
-    ]
-
-    operations = [
-        migrations.AddField(
-            model_name='profile',
-            name='urlid',
-            field=djangoldp.fields.LDPUrlField(blank=True, null=True, unique=True),
-        ),
-    ]
diff --git a/djangoldp_profile/migrations/0003_profile_urlid.py b/djangoldp_profile/migrations/0003_profile_urlid.py
deleted file mode 100644
index c1b6519..0000000
--- a/djangoldp_profile/migrations/0003_profile_urlid.py
+++ /dev/null
@@ -1,21 +0,0 @@
-# -*- coding: utf-8 -*-
-# Generated by Django 1.11 on 2019-09-17 11:09
-from __future__ import unicode_literals
-
-from django.db import migrations
-import djangoldp.fields
-
-
-class Migration(migrations.Migration):
-
-    dependencies = [
-        ('djangoldp_profile', '0002_auto_20190913_1402'),
-    ]
-
-    operations = [
-        migrations.AddField(
-            model_name='profile',
-            name='urlid',
-            field=djangoldp.fields.LDPUrlField(blank=True, null=True, unique=True),
-        ),
-    ]
-- 
GitLab