From adafb09cb1f221259970d16886ea0e03169899a5 Mon Sep 17 00:00:00 2001 From: maxbr Date: Wed, 5 Oct 2016 14:24:11 +0200 Subject: Sync dashboard user data with jira JIRA: PHAROS-264 Change-Id: Ic4533af04946ee0493c762ca79aaf46ee0f80e00 Signed-off-by: maxbr --- .../account/migrations/0002_auto_20161005_1201.py | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 pharos-dashboard/src/account/migrations/0002_auto_20161005_1201.py (limited to 'pharos-dashboard/src/account/migrations/0002_auto_20161005_1201.py') diff --git a/pharos-dashboard/src/account/migrations/0002_auto_20161005_1201.py b/pharos-dashboard/src/account/migrations/0002_auto_20161005_1201.py new file mode 100644 index 0000000..33d2cc5 --- /dev/null +++ b/pharos-dashboard/src/account/migrations/0002_auto_20161005_1201.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10 on 2016-10-05 12:01 +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='full_name', + field=models.CharField(default='', max_length=100), + ), + migrations.AddField( + model_name='userprofile', + name='jira_url', + field=models.CharField(default='', max_length=100), + ), + ] -- cgit 1.2.3-korg