diff options
author | Parker Berberian <pberberian@iol.unh.edu> | 2020-02-18 13:17:10 -0500 |
---|---|---|
committer | Parker Berberian <pberberian@iol.unh.edu> | 2020-02-20 11:40:30 -0500 |
commit | d73588dfe1066f85bb83df0e3c0881ff42c25e04 (patch) | |
tree | d03a3f318d5711253f8359c5bcfd282c9a5f550c /src/booking | |
parent | 8c012f8a9bc64add11920688abcd6981278cb0ea (diff) |
Add Migration Files
Adds migration files with some custom logic
to accompany the refactoring in resource_inventory.
Change-Id: Id3b3e46913c1f9a102426a5c33d7a282f46e8b28
Signed-off-by: Parker Berberian <pberberian@iol.unh.edu>
Diffstat (limited to 'src/booking')
-rw-r--r-- | src/booking/migrations/0007_remove_booking_config_bundle.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/booking/migrations/0007_remove_booking_config_bundle.py b/src/booking/migrations/0007_remove_booking_config_bundle.py new file mode 100644 index 0000000..dcd2e1c --- /dev/null +++ b/src/booking/migrations/0007_remove_booking_config_bundle.py @@ -0,0 +1,17 @@ +# Generated by Django 2.2 on 2020-02-18 15:36 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('booking', '0006_booking_opnfv_config'), + ] + + operations = [ + migrations.RemoveField( + model_name='booking', + name='config_bundle', + ), + ] |