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 --- .../0005_remove_userprofile_registration_complete.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 tools/pharos-dashboard/account/migrations/0005_remove_userprofile_registration_complete.py (limited to 'tools/pharos-dashboard/account/migrations/0005_remove_userprofile_registration_complete.py') diff --git a/tools/pharos-dashboard/account/migrations/0005_remove_userprofile_registration_complete.py b/tools/pharos-dashboard/account/migrations/0005_remove_userprofile_registration_complete.py new file mode 100644 index 00000000..fa4bf729 --- /dev/null +++ b/tools/pharos-dashboard/account/migrations/0005_remove_userprofile_registration_complete.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10 on 2016-08-13 10:49 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('account', '0004_auto_20160812_1805'), + ] + + operations = [ + migrations.RemoveField( + model_name='userprofile', + name='registration_complete', + ), + ] -- cgit 1.2.3-korg