aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/organisations/migrations/0006_organisation_oes.py
blob: 17edfb5d7e8caacc4c4f434c05a311679471eca8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Generated by Django 2.2.9 on 2020-03-11 16:56

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('organisations', '0005_auto_20200303_0727'),
    ]

    operations = [
        migrations.AddField(
            model_name='organisation',
            name='oes',
            field=models.BooleanField(default=True),
            preserve_default=False,
        ),
    ]