2016-04-10 17:47:36 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
import cms.models.fields
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
2016-06-05 16:22:48 +00:00
|
|
|
('cms', '__first__'),
|
|
|
|
('djangocms_blog', '0017_thumbnail_move'),
|
2016-04-10 17:47:36 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AddField(
|
|
|
|
model_name='post',
|
|
|
|
name='liveblog',
|
|
|
|
field=cms.models.fields.PlaceholderField(related_name='live_blog', slotname='live_blog', editable=False, to='cms.Placeholder', null=True),
|
|
|
|
),
|
|
|
|
]
|