Skip to content

Commit

Permalink
Merge pull request #433 from nephila/hotfix/missing_migration
Browse files Browse the repository at this point in the history
Fix missing migration
  • Loading branch information
yakky authored Feb 26, 2018
2 parents e6a7170 + bd9fce8 commit 24350e1
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions djangocms_blog/migrations/0033_auto_20180226_1410.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('djangocms_blog', '0032_auto_20180109_0023'),
]

operations = [
migrations.AlterField(
model_name='blogcategorytranslation',
name='meta_description',
field=models.TextField(blank=True, verbose_name='category meta description', default=''),
),
]

0 comments on commit 24350e1

Please sign in to comment.