summaryrefslogtreecommitdiffstats
path: root/dashboard/src/account/migrations
diff options
context:
space:
mode:
Diffstat (limited to 'dashboard/src/account/migrations')
-rw-r--r--dashboard/src/account/migrations/0002_auto_20180110_1636.py (renamed from dashboard/src/account/migrations/0002_auto_20180109_2002.py)4
-rw-r--r--dashboard/src/account/migrations/0003_auto_20180110_1639.py24
2 files changed, 26 insertions, 2 deletions
diff --git a/dashboard/src/account/migrations/0002_auto_20180109_2002.py b/dashboard/src/account/migrations/0002_auto_20180110_1636.py
index 5cf8a70..6170acb 100644
--- a/dashboard/src/account/migrations/0002_auto_20180109_2002.py
+++ b/dashboard/src/account/migrations/0002_auto_20180110_1636.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
-# Generated by Django 1.10 on 2018-01-09 20:02
+# Generated by Django 1.10 on 2018-01-10 16:36
from __future__ import unicode_literals
from django.conf import settings
@@ -18,7 +18,7 @@ class Migration(migrations.Migration):
migrations.CreateModel(
name='Lab',
fields=[
- ('id', models.AutoField(primary_key=True, serialize=False)),
+ ('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)),
diff --git a/dashboard/src/account/migrations/0003_auto_20180110_1639.py b/dashboard/src/account/migrations/0003_auto_20180110_1639.py
new file mode 100644
index 0000000..d0bc4d6
--- /dev/null
+++ b/dashboard/src/account/migrations/0003_auto_20180110_1639.py
@@ -0,0 +1,24 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.10 on 2018-01-10 16:39
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('account', '0002_auto_20180110_1636'),
+ ]
+
+ operations = [
+ migrations.RemoveField(
+ model_name='lab',
+ name='id',
+ ),
+ migrations.AlterField(
+ model_name='lab',
+ name='name',
+ field=models.CharField(max_length=200, primary_key=True, serialize=False, unique=True),
+ ),
+ ]