26 lines
803 B
Python
26 lines
803 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11 on 2020-04-29 13:46
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('djangoldp_notification', '0002_auto_20190917_1107'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='notification',
|
|
name='allow_create_backlink',
|
|
field=models.BooleanField(default=True, help_text='set to False to disable backlink creation after Model save'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='subscription',
|
|
name='allow_create_backlink',
|
|
field=models.BooleanField(default=True, help_text='set to False to disable backlink creation after Model save'),
|
|
),
|
|
]
|