diff options
author | Parker Berberian <pberberian@iol.unh.edu> | 2019-04-12 12:24:34 -0400 |
---|---|---|
committer | Parker Berberian <pberberian@iol.unh.edu> | 2019-04-17 10:18:45 -0400 |
commit | 9693b9e4185f5dfc658655aef0156f36453133ee (patch) | |
tree | baabbd8820ea2e62b3d667cbe238f64d31fcbe82 /src/booking/migrations | |
parent | d8e9f0e33648426a95ae50bf27fa089036f6a1fd (diff) |
Fixes the idf and pdf templates so that we can deploy opnfv
Change-Id: I0091629f8f0af423210b2e81210d65239e9662b4
Signed-off-by: Parker Berberian <pberberian@iol.unh.edu>
Diffstat (limited to 'src/booking/migrations')
-rw-r--r-- | src/booking/migrations/0005_booking_idf.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/booking/migrations/0005_booking_idf.py b/src/booking/migrations/0005_booking_idf.py new file mode 100644 index 0000000..31e9170 --- /dev/null +++ b/src/booking/migrations/0005_booking_idf.py @@ -0,0 +1,18 @@ +# Generated by Django 2.1 on 2019-04-12 19:27 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('booking', '0004_auto_20190124_1700'), + ] + + operations = [ + migrations.AddField( + model_name='booking', + name='idf', + field=models.TextField(blank=True, default=''), + ), + ] |