summaryrefslogtreecommitdiffstats
path: root/tools/pharos-dashboard/account/migrations/0003_userprofile_registration_complete.py
blob: d6114434b60dec08003c21fe6ee2b970628b5f71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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),
        ),
    ]