From 654ed9bbfe48ecdf9b8237c73bd811374b1b350b Mon Sep 17 00:00:00 2001 From: Sawyer Bergeron Date: Wed, 10 Jan 2018 11:44:23 -0500 Subject: Add Nullable Lab Field to Resources Jira: PHAROS-347 Resources are now possible to associate with lab instances upon creation Change-Id: Id8abbcc448a6d840d55e4bf5130dbec22c8bc58f --- .../account/migrations/0002_auto_20180109_2002.py | 33 ---------------------- 1 file changed, 33 deletions(-) delete mode 100644 dashboard/src/account/migrations/0002_auto_20180109_2002.py (limited to 'dashboard/src/account/migrations/0002_auto_20180109_2002.py') diff --git a/dashboard/src/account/migrations/0002_auto_20180109_2002.py b/dashboard/src/account/migrations/0002_auto_20180109_2002.py deleted file mode 100644 index 5cf8a70..0000000 --- a/dashboard/src/account/migrations/0002_auto_20180109_2002.py +++ /dev/null @@ -1,33 +0,0 @@ -# -*- coding: utf-8 -*- -# Generated by Django 1.10 on 2018-01-09 20:02 -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.AutoField(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), - ), - ] -- cgit 1.2.3-korg