Add a migration for the neluser module
This commit is contained in:
parent
397d0bf62d
commit
3d32c27d9a
1 changed files with 23 additions and 0 deletions
23
neluser/migrations/0002_auto_20180204_2035.py
Normal file
23
neluser/migrations/0002_auto_20180204_2035.py
Normal file
|
@ -0,0 +1,23 @@
|
|||
# Generated by Django 2.0.1 on 2018-02-04 19:35
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('neluser', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='neluser',
|
||||
name='email',
|
||||
field=models.EmailField(max_length=254, null=True, unique=True, verbose_name='email'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='neluser',
|
||||
name='is_active',
|
||||
field=models.BooleanField(default=False, help_text='Designates whether this user should be treated as active. Unselect this instead of deleting accounts.', verbose_name='active'),
|
||||
),
|
||||
]
|
Loading…
Reference in a new issue