From 3b5ef3b0a88247eeafeee878de528aad71f9fd4b Mon Sep 17 00:00:00 2001 From: maxbr Date: Fri, 19 Aug 2016 17:10:31 +0200 Subject: Split the dashboard into different apps, add tests JIRA: RELENG-12 Signed-off-by: maxbr --- .../account/migrations/0007_auto_20160814_1056.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 tools/pharos-dashboard/account/migrations/0007_auto_20160814_1056.py (limited to 'tools/pharos-dashboard/account/migrations/0007_auto_20160814_1056.py') diff --git a/tools/pharos-dashboard/account/migrations/0007_auto_20160814_1056.py b/tools/pharos-dashboard/account/migrations/0007_auto_20160814_1056.py new file mode 100644 index 00000000..2d1bbaeb --- /dev/null +++ b/tools/pharos-dashboard/account/migrations/0007_auto_20160814_1056.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10 on 2016-08-14 10:56 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('account', '0006_auto_20160813_1443'), + ] + + operations = [ + migrations.RenameField( + model_name='userprofile', + old_name='gpgkey', + new_name='pgpkey', + ), + ] -- cgit 1.2.3-korg