diff --git a/djangoldp_profile/migrations/0005_auto_20200522_1516.py b/djangoldp_profile/migrations/0005_auto_20200522_1516.py
new file mode 100644
index 0000000000000000000000000000000000000000..933b79a6a878c7cd37f18c92860db4a4a30ca61f
--- /dev/null
+++ b/djangoldp_profile/migrations/0005_auto_20200522_1516.py
@@ -0,0 +1,25 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.11.29 on 2020-05-22 15:16
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('djangoldp_profile', '0004_auto_20200506_0838'),
+    ]
+
+    operations = [
+        migrations.AddField(
+            model_name='profile',
+            name='allow_create_backlink',
+            field=models.BooleanField(default=True, help_text='set to False to disable backlink creation after Model save'),
+        ),
+        migrations.AddField(
+            model_name='profile',
+            name='is_backlink',
+            field=models.BooleanField(default=False, help_text='set automatically to indicate the Model is a backlink'),
+        ),
+    ]
diff --git a/setup.cfg b/setup.cfg
index 290e0bd5b4cae1cbe5ceaead7e8114d46455cd23..aa4adb1de9286621619f21cc77db560e9457ebc9 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -10,7 +10,7 @@ license = MIT
 [options]
 packages = find:
 install_requires =
-    djangoldp~=0.5
+    djangoldp~=0.7
     djangoldp_account~=0.0
 
 [options.extras_require]