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/account/migrations/0001_initial.py | |
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/account/migrations/0001_initial.py')
-rw-r--r-- | tools/pharos-dashboard/src/account/migrations/0001_initial.py | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/tools/pharos-dashboard/src/account/migrations/0001_initial.py b/tools/pharos-dashboard/src/account/migrations/0001_initial.py new file mode 100644 index 00000000..8db05cb4 --- /dev/null +++ b/tools/pharos-dashboard/src/account/migrations/0001_initial.py @@ -0,0 +1,36 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10 on 2016-09-23 11:36 +from __future__ import unicode_literals + +import account.models +from django.conf import settings +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + initial = True + + dependencies = [ + migrations.swappable_dependency(settings.AUTH_USER_MODEL), + ] + + operations = [ + migrations.CreateModel( + name='UserProfile', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('timezone', models.CharField(default='UTC', max_length=100)), + ('ssh_public_key', models.FileField(blank=True, null=True, upload_to=account.models.upload_to)), + ('pgp_public_key', models.FileField(blank=True, null=True, upload_to=account.models.upload_to)), + ('company', models.CharField(max_length=200)), + ('oauth_token', models.CharField(max_length=1024)), + ('oauth_secret', models.CharField(max_length=1024)), + ('user', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)), + ], + options={ + 'db_table': 'user_profile', + }, + ), + ] |