From 7d20f833162cde72bfbfd2593e9d17bfd1253745 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Pasquier <contact@jbpasquier.eu> Date: Wed, 6 May 2020 12:16:17 +0200 Subject: [PATCH] update: missing migration --- .../migrations/0004_auto_20200506_0838.py | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 djangoldp_profile/migrations/0004_auto_20200506_0838.py diff --git a/djangoldp_profile/migrations/0004_auto_20200506_0838.py b/djangoldp_profile/migrations/0004_auto_20200506_0838.py new file mode 100644 index 0000000..14373c6 --- /dev/null +++ b/djangoldp_profile/migrations/0004_auto_20200506_0838.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.29 on 2020-05-06 08:38 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('djangoldp_profile', '0003_auto_20200416_1157'), + ] + + operations = [ + migrations.AlterField( + model_name='profile', + name='slug', + field=models.SlugField(blank=True, unique=True), + ), + ] -- GitLab