diff options
author | MR Lemon <matt@matthewlemon> | 2020-04-24 20:33:40 +0100 |
---|---|---|
committer | MR Lemon <matt@matthewlemon> | 2020-04-24 20:33:40 +0100 |
commit | deaa85227e47dd70301f88caca87edb0ad3f8adf (patch) | |
tree | de6ea5623df3ba6de94c2ddadf85ae8e5fc8f449 /ctrack/caf/migrations | |
parent | 301154e0a48ea2e2966afa92912317367dfcbe1b (diff) |
made create forms more consistent
Diffstat (limited to '')
-rw-r--r-- | ctrack/caf/migrations/0003_auto_20200424_1924.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ctrack/caf/migrations/0003_auto_20200424_1924.py b/ctrack/caf/migrations/0003_auto_20200424_1924.py new file mode 100644 index 0000000..34613c6 --- /dev/null +++ b/ctrack/caf/migrations/0003_auto_20200424_1924.py @@ -0,0 +1,18 @@ +# Generated by Django 2.2.9 on 2020-04-24 19:24 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('caf', '0002_auto_20200403_1407'), + ] + + operations = [ + migrations.AlterField( + model_name='applicablesystem', + name='description', + field=models.TextField(blank=True, max_length=1000, null=True), + ), + ] |