summaryrefslogtreecommitdiffstats
path: root/tools/pharos-dashboard/src/account/migrations/0002_auto_20161005_1201.py
blob: 33d2cc54759ca924d08f0f63b67362551c54a15f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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),
        ),
    ]