0005_profile_two_factor_secret.py 486 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import models, migrations


class Migration(migrations.Migration):

    dependencies = [
        ('dashboard', '0004_profile_desktop_notifications'),
    ]

    operations = [
        migrations.AddField(
            model_name='profile',
            name='two_factor_secret',
            field=models.CharField(max_length=32, null=True, verbose_name='two factor secret key', blank=True),
        ),
    ]