aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/organisations/migrations/0019_organisation_active.py
blob: affb7b814f0a3014cb70e4316b6fa269a102e202 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Generated by Django 2.2.9 on 2020-02-17 20:55

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('organisations', '0018_organisation_comments'),
    ]

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