Skip to content

Commit

Permalink
Add migrations for change of show_toc
Browse files Browse the repository at this point in the history
After commit 155b2f7 ("Don't
show table of content by default") new migrations need to be
applied. Create migrations with

    ./manage.py makemigrations
  • Loading branch information
donald committed Jan 19, 2020
1 parent b72aae2 commit fdc0e00
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 0 deletions.
23 changes: 23 additions & 0 deletions mpicms/base/migrations/0050_auto_20200119_1857.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 2.2.9 on 2020-01-19 17:57

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('base', '0049_phonelistpage'),
]

operations = [
migrations.AlterField(
model_name='homepage',
name='show_toc',
field=models.BooleanField(default=False, verbose_name='Show table of content'),
),
migrations.AlterField(
model_name='wikipage',
name='show_toc',
field=models.BooleanField(default=False, verbose_name='Show table of content'),
),
]
18 changes: 18 additions & 0 deletions mpicms/events/migrations/0013_auto_20200119_1857.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 2.2.9 on 2020-01-19 17:57

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('events', '0012_event_show_toc'),
]

operations = [
migrations.AlterField(
model_name='event',
name='show_toc',
field=models.BooleanField(default=False, verbose_name='Show table of content'),
),
]
18 changes: 18 additions & 0 deletions mpicms/news/migrations/0021_auto_20200119_1857.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 2.2.9 on 2020-01-19 17:57

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('news', '0020_newsentry_show_toc'),
]

operations = [
migrations.AlterField(
model_name='newsentry',
name='show_toc',
field=models.BooleanField(default=False, verbose_name='Show table of content'),
),
]

0 comments on commit fdc0e00

Please sign in to comment.