Backlinks changes
This commit is contained in:
committed by
Benoit Alessandroni
parent
1c7ec32288
commit
4bfefeaa1d
25
djangoldp_notification/migrations/0003_auto_20200429_1346.py
Normal file
25
djangoldp_notification/migrations/0003_auto_20200429_1346.py
Normal file
@ -0,0 +1,25 @@
|
||||
# -*- 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'),
|
||||
),
|
||||
]
|
25
djangoldp_notification/migrations/0004_auto_20200501_1207.py
Normal file
25
djangoldp_notification/migrations/0004_auto_20200501_1207.py
Normal file
@ -0,0 +1,25 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11 on 2020-05-01 12:07
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('djangoldp_notification', '0003_auto_20200429_1346'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='notification',
|
||||
name='backlink_created',
|
||||
field=models.BooleanField(default=False, help_text='set automatically to indicate the Model is a backlink'),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='subscription',
|
||||
name='backlink_created',
|
||||
field=models.BooleanField(default=False, help_text='set automatically to indicate the Model is a backlink'),
|
||||
),
|
||||
]
|
25
djangoldp_notification/migrations/0005_auto_20200505_1733.py
Normal file
25
djangoldp_notification/migrations/0005_auto_20200505_1733.py
Normal file
@ -0,0 +1,25 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11 on 2020-05-05 17:33
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('djangoldp_notification', '0004_auto_20200501_1207'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RenameField(
|
||||
model_name='notification',
|
||||
old_name='backlink_created',
|
||||
new_name='is_backlink',
|
||||
),
|
||||
migrations.RenameField(
|
||||
model_name='subscription',
|
||||
old_name='backlink_created',
|
||||
new_name='is_backlink',
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user