Update migrations

This commit is contained in:
Iacopo Spalletti 2016-09-17 01:33:15 +02:00
parent f66cb4ec6f
commit cbecd4f9db
No known key found for this signature in database
GPG key ID: BDCBC2EB289F60C6

View 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'),
),
]