diff options
author | Parker Berberian <pberberian@iol.unh.edu> | 2019-01-29 10:05:27 -0500 |
---|---|---|
committer | Parker Berberian <pberberian@iol.unh.edu> | 2019-01-29 10:05:27 -0500 |
commit | fef3a855657a7e5c2393dc469690d73bb249bd8f (patch) | |
tree | aa9d47271c112a8a81cb1768292bae7206bfbe58 /src/booking/migrations | |
parent | 2c5650cad195f0bd78fb201ebbddc2afef96f752 (diff) |
Allow Users to Delete objects and Cancel Bookings
A user can now delete thier own resources, configs,
and snapshots as well as cancelling bookings.
Change-Id: Ic8e4751feeb0b8fa0d76816b8df2d16729ad2828
Signed-off-by: Parker Berberian <pberberian@iol.unh.edu>
Diffstat (limited to 'src/booking/migrations')
-rw-r--r-- | src/booking/migrations/0004_auto_20190124_1700.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/booking/migrations/0004_auto_20190124_1700.py b/src/booking/migrations/0004_auto_20190124_1700.py new file mode 100644 index 0000000..baa32d2 --- /dev/null +++ b/src/booking/migrations/0004_auto_20190124_1700.py @@ -0,0 +1,20 @@ +# Generated by Django 2.1 on 2019-01-24 17:00 + +from django.conf import settings +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('booking', '0003_auto_20190115_1733'), + ] + + operations = [ + migrations.AlterField( + model_name='booking', + name='owner', + field=models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, related_name='owner', to=settings.AUTH_USER_MODEL), + ), + ] |