summaryrefslogtreecommitdiffstats
path: root/tools/pharos-dashboard/account/migrations/0002_auto_20160816_1511.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/pharos-dashboard/account/migrations/0002_auto_20160816_1511.py')
-rw-r--r--tools/pharos-dashboard/account/migrations/0002_auto_20160816_1511.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/tools/pharos-dashboard/account/migrations/0002_auto_20160816_1511.py b/tools/pharos-dashboard/account/migrations/0002_auto_20160816_1511.py
new file mode 100644
index 00000000..3fcd989a
--- /dev/null
+++ b/tools/pharos-dashboard/account/migrations/0002_auto_20160816_1511.py
@@ -0,0 +1,27 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.10 on 2016-08-16 15:11
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('account', '0001_initial'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='userprofile',
+ name='oauth_secret',
+ field=models.CharField(default='', max_length=1024),
+ preserve_default=False,
+ ),
+ migrations.AddField(
+ model_name='userprofile',
+ name='oauth_token',
+ field=models.CharField(default='', max_length=1024),
+ preserve_default=False,
+ ),
+ ]