Update migrations
This commit is contained in:
parent
f66cb4ec6f
commit
cbecd4f9db
1 changed files with 30 additions and 0 deletions
30
djangocms_blog/migrations/0027_auto_20160917_0123.py
Normal file
30
djangocms_blog/migrations/0027_auto_20160917_0123.py
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# Generated by Django 1.9.9 on 2016-09-16 23:23
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('djangocms_blog', '0026_merge'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='authorentriesplugin',
|
||||||
|
name='template_folder',
|
||||||
|
field=models.CharField(choices=[('plugins', 'Default template')], default='plugins', help_text='Select plugin template to load for this instance', max_length=200, verbose_name='Plugin template'),
|
||||||
|
),
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='genericblogplugin',
|
||||||
|
name='template_folder',
|
||||||
|
field=models.CharField(choices=[('plugins', 'Default template')], default='plugins', help_text='Select plugin template to load for this instance', max_length=200, verbose_name='Plugin template'),
|
||||||
|
),
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='latestpostsplugin',
|
||||||
|
name='template_folder',
|
||||||
|
field=models.CharField(choices=[('plugins', 'Default template')], default='plugins', help_text='Select plugin template to load for this instance', max_length=200, verbose_name='Plugin template'),
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in a new issue