Add a migration for the neluser module

This commit is contained in:
Rodolphe Breard 2018-02-04 20:41:11 +01:00
parent 397d0bf62d
commit 3d32c27d9a

View 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'),
),
]