diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-02-07 17:11:21 +0000 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-02-07 17:11:21 +0000 |
commit | 93bc9d8e6386b8884863d27bef21d92eb60766d6 (patch) | |
tree | 54a5f8bbc43888568c846b8634a5f94794dcc7e1 /ctrack/caf/migrations | |
parent | 60ec91d03fc6a5b9a5f650bfc3f8959473597bdd (diff) |
continued to work on create CAF form - including help_text to create parent object
Diffstat (limited to 'ctrack/caf/migrations')
-rw-r--r-- | ctrack/caf/migrations/0002_auto_20200207_1622.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/ctrack/caf/migrations/0002_auto_20200207_1622.py b/ctrack/caf/migrations/0002_auto_20200207_1622.py new file mode 100644 index 0000000..2d4575b --- /dev/null +++ b/ctrack/caf/migrations/0002_auto_20200207_1622.py @@ -0,0 +1,19 @@ +# Generated by Django 2.2.9 on 2020-02-07 16:22 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('caf', '0001_initial'), + ] + + operations = [ + migrations.AlterField( + model_name='caf', + name='file', + field=models.ForeignKey(blank=True, on_delete=django.db.models.deletion.CASCADE, to='caf.DocumentFile'), + ), + ] |