Skip to content
Snippets Groups Projects

update: is_backlink

Merged Calum Mackervoy requested to merge is-backlink into master
1 file
+ 20
0
Compare changes
  • Side-by-side
  • Inline
 
# -*- coding: utf-8 -*-
 
# Generated by Django 1.11.29 on 2020-06-17 18:17
 
from __future__ import unicode_literals
 
 
from django.db import migrations, models
 
 
 
class Migration(migrations.Migration):
 
 
dependencies = [
 
('djangoldp_profile', '0006_auto_20200610_1323'),
 
]
 
 
operations = [
 
migrations.AlterField(
 
model_name='profile',
 
name='is_backlink',
 
field=models.BooleanField(default=False, help_text='set automatically to indicate the Model is a backlink'),
 
),
 
]
Loading