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 | 6ecb8d290c106e41d0f5a446e7aa878a219224ff (patch) | |
tree | 4f316792d71b30f85c75b5af64cfac333829a6b2 /pharos-dashboard/src/account/migrations | |
parent | 6cd7c021a40a50e35ad5788d10a6357465c276ad (diff) |
Add database migration files
Change-Id: Id24ced5dc7d71861df9899d472edb26f5805da50
Signed-off-by: maxbr <maxbr@mi.fu-berlin.de>
Diffstat (limited to 'pharos-dashboard/src/account/migrations')
-rw-r--r-- | pharos-dashboard/src/account/migrations/0001_initial.py | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/pharos-dashboard/src/account/migrations/0001_initial.py b/pharos-dashboard/src/account/migrations/0001_initial.py new file mode 100644 index 0000000..8db05cb --- /dev/null +++ b/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', + }, + ), + ] |