Merge "Split the dashboard into different apps, add tests"
[pharos.git] / tools / pharos-dashboard / account / migrations / 0004_auto_20160812_1805.py
diff --git a/tools/pharos-dashboard/account/migrations/0004_auto_20160812_1805.py b/tools/pharos-dashboard/account/migrations/0004_auto_20160812_1805.py
new file mode 100644 (file)
index 0000000..cb22855
--- /dev/null
@@ -0,0 +1,26 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.10 on 2016-08-12 18:05
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('account', '0003_userprofile_registration_complete'),
+    ]
+
+    operations = [
+        migrations.AddField(
+            model_name='userprofile',
+            name='gpgkey',
+            field=models.CharField(default='a', max_length=2048),
+            preserve_default=False,
+        ),
+        migrations.AlterField(
+            model_name='userprofile',
+            name='sshkey',
+            field=models.CharField(max_length=2048),
+        ),
+    ]