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 --- .../0003_userprofile_registration_complete.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 tools/pharos-dashboard/account/migrations/0003_userprofile_registration_complete.py (limited to 'tools/pharos-dashboard/account/migrations/0003_userprofile_registration_complete.py') diff --git a/tools/pharos-dashboard/account/migrations/0003_userprofile_registration_complete.py b/tools/pharos-dashboard/account/migrations/0003_userprofile_registration_complete.py new file mode 100644 index 00000000..d6114434 --- /dev/null +++ b/tools/pharos-dashboard/account/migrations/0003_userprofile_registration_complete.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10 on 2016-08-12 17:09 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('account', '0002_userprofile_timezone'), + ] + + operations = [ + migrations.AddField( + model_name='userprofile', + name='registration_complete', + field=models.BooleanField(default=False), + ), + ] -- cgit 1.2.3-korg