From 0f5bbdf825b78ba3b70be60e13772ea18756d528 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Pasquier <contact@jbpasquier.eu> Date: Wed, 10 Jun 2020 15:24:26 +0200 Subject: [PATCH] update: is_backlink migration --- .../migrations/0011_auto_20200610_1323.py | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 djangoldp/migrations/0011_auto_20200610_1323.py diff --git a/djangoldp/migrations/0011_auto_20200610_1323.py b/djangoldp/migrations/0011_auto_20200610_1323.py new file mode 100644 index 00000000..93a5bae7 --- /dev/null +++ b/djangoldp/migrations/0011_auto_20200610_1323.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.29 on 2020-06-10 13:23 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('djangoldp', '0010_follower'), + ] + + operations = [ + migrations.AlterField( + model_name='activity', + name='is_backlink', + field=models.BooleanField(default=False, help_text='(DEPRECIATED) set automatically to indicate the Model is a backlink'), + ), + migrations.AlterField( + model_name='follower', + name='is_backlink', + field=models.BooleanField(default=False, help_text='(DEPRECIATED) set automatically to indicate the Model is a backlink'), + ), + migrations.AlterField( + model_name='ldpsource', + name='is_backlink', + field=models.BooleanField(default=False, help_text='(DEPRECIATED) set automatically to indicate the Model is a backlink'), + ), + ] -- GitLab