Skip to content
Snippets Groups Projects
Commit 022c16bb authored by Jean-Baptiste's avatar Jean-Baptiste
Browse files

update: fix migrations files

parent a33dc48b
No related branches found
No related tags found
No related merge requests found
Pipeline #1291 passed
# -*- 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',
......
# -*- 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),
),
]
# -*- 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),
),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment