diff options
author | maxbr <maxbr@mi.fu-berlin.de> | 2016-09-26 16:36:56 +0200 |
---|---|---|
committer | maxbr <maxbr@mi.fu-berlin.de> | 2016-09-26 16:36:56 +0200 |
commit | 94f19e02d37b1d7af807854cae910c83d34ce0cd (patch) | |
tree | 21be6c6fd4293d6ed80fa52ad990f8984dd74f64 /tools/pharos-dashboard/src/notification/migrations | |
parent | ff30b14a212f38cf59084d30e9f13f9f92d2be3b (diff) |
Add database migration files
Change-Id: Id24ced5dc7d71861df9899d472edb26f5805da50
Signed-off-by: maxbr <maxbr@mi.fu-berlin.de>
Diffstat (limited to 'tools/pharos-dashboard/src/notification/migrations')
-rw-r--r-- | tools/pharos-dashboard/src/notification/migrations/0001_initial.py | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/tools/pharos-dashboard/src/notification/migrations/0001_initial.py b/tools/pharos-dashboard/src/notification/migrations/0001_initial.py new file mode 100644 index 00000000..d4af7519 --- /dev/null +++ b/tools/pharos-dashboard/src/notification/migrations/0001_initial.py @@ -0,0 +1,28 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10 on 2016-09-23 11:36 +from __future__ import unicode_literals + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + initial = True + + dependencies = [ + ('booking', '0001_initial'), + ] + + operations = [ + migrations.CreateModel( + name='BookingNotification', + fields=[ + ('id', models.AutoField(primary_key=True, serialize=False)), + ('type', models.CharField(max_length=100)), + ('submit_time', models.DateTimeField()), + ('submitted', models.BooleanField(default=False)), + ('booking', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='booking.Booking')), + ], + ), + ] |