You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
2.5 KiB
58 lines
2.5 KiB
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
import cms.models.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('cms', '0012_auto_20150607_2207'),
|
|
('blog', '0007_auto_20150713_1250'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='blogconfig',
|
|
name='placeholder_base_sidebar',
|
|
field=cms.models.fields.PlaceholderField(related_name='blog_base_sidebar', slotname='newsblog_base_sidebar', editable=False, to='cms.Placeholder', null=True),
|
|
preserve_default=True,
|
|
),
|
|
migrations.AddField(
|
|
model_name='blogconfig',
|
|
name='placeholder_base_top',
|
|
field=cms.models.fields.PlaceholderField(related_name='blog_base_top', slotname='newsblog_base_top', editable=False, to='cms.Placeholder', null=True),
|
|
preserve_default=True,
|
|
),
|
|
migrations.AddField(
|
|
model_name='blogconfig',
|
|
name='placeholder_detail_bottom',
|
|
field=cms.models.fields.PlaceholderField(related_name='blog_detail_bottom', slotname='newsblog_detail_bottom', editable=False, to='cms.Placeholder', null=True),
|
|
preserve_default=True,
|
|
),
|
|
migrations.AddField(
|
|
model_name='blogconfig',
|
|
name='placeholder_detail_footer',
|
|
field=cms.models.fields.PlaceholderField(related_name='blog_detail_footer', slotname='newsblog_detail_footer', editable=False, to='cms.Placeholder', null=True),
|
|
preserve_default=True,
|
|
),
|
|
migrations.AddField(
|
|
model_name='blogconfig',
|
|
name='placeholder_detail_top',
|
|
field=cms.models.fields.PlaceholderField(related_name='blog_detail_top', slotname='newsblog_detail_top', editable=False, to='cms.Placeholder', null=True),
|
|
preserve_default=True,
|
|
),
|
|
migrations.AddField(
|
|
model_name='blogconfig',
|
|
name='placeholder_list_footer',
|
|
field=cms.models.fields.PlaceholderField(related_name='blog_list_footer', slotname='newsblog_list_footer', editable=False, to='cms.Placeholder', null=True),
|
|
preserve_default=True,
|
|
),
|
|
migrations.AddField(
|
|
model_name='blogconfig',
|
|
name='placeholder_list_top',
|
|
field=cms.models.fields.PlaceholderField(related_name='blog_list_top', slotname='newsblog_list_top', editable=False, to='cms.Placeholder', null=True),
|
|
preserve_default=True,
|
|
),
|
|
]
|
|
|