From 1583504311d0bee3541b9237ddbb231fe84b1f40 Mon Sep 17 00:00:00 2001
From: Jean-Baptiste <bleme@pm.me>
Date: Tue, 17 Sep 2019 13:16:55 +0200
Subject: [PATCH] update: migrations files for last djangoldp version

---
 .../migrations/0005_profile_urlid.py          | 21 +++++++++++++++++++
 1 file changed, 21 insertions(+)
 create mode 100644 djangoldp_profile/migrations/0005_profile_urlid.py

diff --git a/djangoldp_profile/migrations/0005_profile_urlid.py b/djangoldp_profile/migrations/0005_profile_urlid.py
new file mode 100644
index 0000000..a1c8086
--- /dev/null
+++ b/djangoldp_profile/migrations/0005_profile_urlid.py
@@ -0,0 +1,21 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.11 on 2019-09-17 11:16
+from __future__ import unicode_literals
+
+from django.db import migrations
+import djangoldp.fields
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('djangoldp_profile', '0004_auto_20190524_1349'),
+    ]
+
+    operations = [
+        migrations.AddField(
+            model_name='profile',
+            name='urlid',
+            field=djangoldp.fields.LDPUrlField(blank=True, null=True, unique=True),
+        ),
+    ]
-- 
GitLab