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/0002_userprofile_timezone.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 tools/pharos-dashboard/account/migrations/0002_userprofile_timezone.py (limited to 'tools/pharos-dashboard/account/migrations/0002_userprofile_timezone.py') diff --git a/tools/pharos-dashboard/account/migrations/0002_userprofile_timezone.py b/tools/pharos-dashboard/account/migrations/0002_userprofile_timezone.py new file mode 100644 index 00000000..ea67598a --- /dev/null +++ b/tools/pharos-dashboard/account/migrations/0002_userprofile_timezone.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10 on 2016-08-12 13:17 +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='timezone', + field=models.CharField(default='UTC', max_length=100), + ), + ] -- cgit 1.2.3-korg