diff options
author | Jack Morgan <jack.morgan@intel.com> | 2016-08-22 14:13:06 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-08-22 14:13:06 +0000 |
commit | c121ae90322dac5cf72e98450c89ff7e5131b20c (patch) | |
tree | 51b6c58e102777649940686915da48aab5971fac /tools/pharos-dashboard/booking/migrations/0002_remove_booking_deleted.py | |
parent | e4649cce49068942ef754746fdd5bc75636075de (diff) | |
parent | 3b5ef3b0a88247eeafeee878de528aad71f9fd4b (diff) |
Merge "Split the dashboard into different apps, add tests"
Diffstat (limited to 'tools/pharos-dashboard/booking/migrations/0002_remove_booking_deleted.py')
-rw-r--r-- | tools/pharos-dashboard/booking/migrations/0002_remove_booking_deleted.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tools/pharos-dashboard/booking/migrations/0002_remove_booking_deleted.py b/tools/pharos-dashboard/booking/migrations/0002_remove_booking_deleted.py new file mode 100644 index 00000000..335379d5 --- /dev/null +++ b/tools/pharos-dashboard/booking/migrations/0002_remove_booking_deleted.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10 on 2016-08-13 12:50 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('booking', '0001_initial'), + ] + + operations = [ + migrations.RemoveField( + model_name='booking', + name='deleted', + ), + ] |