diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2020-03-03 08:38:30 +0000 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2020-03-03 08:38:40 +0000 |
commit | c7f9b3340944f58077747fcbd54ac721fd4cfc58 (patch) | |
tree | 4349326f15489998cb9151bf101e90c306fb5b11 /ctrack/organisations/migrations | |
parent | eb9b5823265ed2641428b15fe406431c7a458c1c (diff) |
added extra fields to caf model
Diffstat (limited to 'ctrack/organisations/migrations')
-rw-r--r-- | ctrack/organisations/migrations/0005_auto_20200303_0727.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ctrack/organisations/migrations/0005_auto_20200303_0727.py b/ctrack/organisations/migrations/0005_auto_20200303_0727.py new file mode 100644 index 0000000..8db8302 --- /dev/null +++ b/ctrack/organisations/migrations/0005_auto_20200303_0727.py @@ -0,0 +1,18 @@ +# Generated by Django 2.2.9 on 2020-03-03 07:27 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('organisations', '0004_auto_20200220_1634'), + ] + + operations = [ + migrations.AlterField( + model_name='organisation', + name='designation_type', + field=models.IntegerField(choices=[(1, 'Automatic'), (2, 'Reserve Power'), (3, 'NA')], default=1), + ), + ] |