Skip to content
This repository has been archived by the owner on Oct 29, 2019. It is now read-only.

Commit

Permalink
Added missing migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
czpython committed Aug 21, 2016
1 parent 063332f commit 1aa5cbe
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions aldryn_newsblog/migrations/0014_auto_20160821_1156.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('aldryn_newsblog', '0013_auto_20160623_1703'),
]

operations = [
migrations.AlterField(
model_name='newsblogarchiveplugin',
name='cache_duration',
field=models.PositiveSmallIntegerField(default=0, help_text="The maximum duration (in seconds) that this plugin's content should be cached."),
),
migrations.AlterField(
model_name='newsbloglatestarticlesplugin',
name='cache_duration',
field=models.PositiveSmallIntegerField(default=0, help_text="The maximum duration (in seconds) that this plugin's content should be cached."),
),
migrations.AlterField(
model_name='newsblogrelatedplugin',
name='cache_duration',
field=models.PositiveSmallIntegerField(default=0, help_text="The maximum duration (in seconds) that this plugin's content should be cached."),
),
]

0 comments on commit 1aa5cbe

Please sign in to comment.