This repository has been archived on 2022-05-05. You can view files and clone it, but cannot push or open issues or pull requests.
userausfall/userausfall/migrations/0003_auto_20210414_0827.py

32 lines
1.1 KiB
Python

# Generated by Django 2.2.13 on 2021-04-14 08:27
import django.contrib.auth.validators
from django.db import migrations, models
import userausfall.models
class Migration(migrations.Migration):
dependencies = [
('userausfall', '0002_accountrequest'),
]
operations = [
migrations.AlterModelManagers(
name='user',
managers=[
('objects', userausfall.models.UserManager()),
],
),
migrations.AlterField(
model_name='user',
name='email',
field=models.EmailField(blank=True, max_length=254, unique=True, verbose_name='email address'),
),
migrations.AlterField(
model_name='user',
name='username',
field=models.CharField(blank=True, error_messages={'unique': 'A user with that username already exists.'}, help_text='Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only.', max_length=150, validators=[django.contrib.auth.validators.UnicodeUsernameValidator()], verbose_name='username'),
),
]