diff options
Diffstat (limited to 'pharos-dashboard/account/migrations/0003_userprofile_registration_complete.py')
-rw-r--r-- | pharos-dashboard/account/migrations/0003_userprofile_registration_complete.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/pharos-dashboard/account/migrations/0003_userprofile_registration_complete.py b/pharos-dashboard/account/migrations/0003_userprofile_registration_complete.py new file mode 100644 index 0000000..d611443 --- /dev/null +++ b/pharos-dashboard/account/migrations/0003_userprofile_registration_complete.py @@ -0,0 +1,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), + ), + ] |