diff options
author | Sawyer Bergeron <sbergeron@iol.unh.edu> | 2018-01-10 11:44:23 -0500 |
---|---|---|
committer | Sawyer Bergeron <sbergeron@iol.unh.edu> | 2018-01-17 21:42:33 +0000 |
commit | dedc82d564993139f72102e3d2330f2fb64b1244 (patch) | |
tree | 38a986b6355b377f0d0cb8aa460122cab6071060 /src/account/migrations/0002_auto_20180110_1636.py | |
parent | a1df798486c60c911dfb2e6c2c487f7bcb7f6d01 (diff) |
Add Nullable Lab Field to Resources
Jira: PHAROS-347
Resources are now possible to associate with lab instances upon creation
Change-Id: Id8abbcc448a6d840d55e4bf5130dbec22c8bc58f
Diffstat (limited to 'src/account/migrations/0002_auto_20180110_1636.py')
-rw-r--r-- | src/account/migrations/0002_auto_20180110_1636.py | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/account/migrations/0002_auto_20180110_1636.py b/src/account/migrations/0002_auto_20180110_1636.py new file mode 100644 index 0000000..6170acb --- /dev/null +++ b/src/account/migrations/0002_auto_20180110_1636.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10 on 2018-01-10 16:36 +from __future__ import unicode_literals + +from django.conf import settings +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + migrations.swappable_dependency(settings.AUTH_USER_MODEL), + ('account', '0001_initial'), + ] + + operations = [ + migrations.CreateModel( + name='Lab', + fields=[ + ('id', models.CharField(max_length=200, primary_key=True, serialize=False)), + ('name', models.CharField(max_length=200, unique=True)), + ('contact_email', models.EmailField(blank=True, max_length=200, null=True)), + ('contact_phone', models.CharField(blank=True, max_length=20, null=True)), + ('lab_user', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)), + ], + ), + migrations.AddField( + model_name='userprofile', + name='email_addr', + field=models.CharField(default='email@mail.com', max_length=300), + ), + ] |