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

Commit

Permalink
Merge pull request #7 from bh/add-missing-migration-step
Browse files Browse the repository at this point in the history
Thanks for the contribution!
  • Loading branch information
electroniceagle committed Feb 10, 2016
2 parents 7c6e786 + 9ce90bc commit f415072
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions cmsplugin_collapse/migrations/0002_auto_20160210_0651.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import models, migrations


class Migration(migrations.Migration):

dependencies = [
('cmsplugin_collapse', '0001_initial'),
]

operations = [
migrations.AlterField(
model_name='accordionheader',
name='show_first',
field=models.BooleanField(default=True, help_text='If selected, the first collapsible will be displayed in the open state.'),
preserve_default=True,
),
]

0 comments on commit f415072

Please sign in to comment.