summaryrefslogtreecommitdiff
path: root/app/pages/migrations/0006_page_enable_comments.py
blob: 25f1c7bac9996cacb225b2f7a463f3f728043dd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Generated by Django 2.1.7 on 2019-08-22 13:44

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('pages', '0005_auto_20190203_1434'),
    ]

    operations = [
        migrations.AddField(
            model_name='page',
            name='enable_comments',
            field=models.BooleanField(default=False),
        ),
    ]