22 lines
755 B
Python
22 lines
755 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.11.22 on 2019-08-02 19:26
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
import django.contrib.auth.validators
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('users', '0013_auto_20190802_2125'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='user',
|
||
|
name='username',
|
||
|
field=models.CharField(error_messages={'unique': 'A user with that username already exists.'}, help_text='Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only.', max_length=150, unique=True, validators=[django.contrib.auth.validators.UnicodeUsernameValidator()], verbose_name='username'),
|
||
|
),
|
||
|
]
|