summaryrefslogtreecommitdiff
path: root/chimere/migrations/0009_area_use_search.py
blob: 1544332e2e742af3ae375ec51d3ab59d174daa5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- coding: utf-8 -*-
# Generated by Django 1.11.5 on 2017-09-28 09:29
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('chimere', '0008_auto_20170927_1539'),
    ]

    operations = [
        migrations.AddField(
            model_name='area',
            name='use_search',
            field=models.BooleanField(default=True, verbose_name='Use search'),
        ),
    ]