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 d75cc6c984401c6162310c9548299e999236e57d..bdb96023aa323f39da760cfe04108d6f9005dbed 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 8514bb7746302430cf8f21086133e0e7db257c90..0000000000000000000000000000000000000000 --- 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 c1b6519f5be571ff979d8a3fba2e526d2e79c7d9..0000000000000000000000000000000000000000 --- 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), - ), - ]