gault-millau/apps/account/migrations/0029_auto_20200109_1354.py

19 lines
604 B
Python

# Generated by Django 2.2.7 on 2020-01-09 13:54
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('account', '0028_merge_20191217_1127'),
]
operations = [
migrations.AlterField(
model_name='user',
name='username',
field=models.CharField(blank=True, default=None, error_messages={'unique': 'A user with that username already exists.'}, help_text='Required. 150 characters or fewer. Letters, digits and ./+/-/_ only.', max_length=150, null=True, verbose_name='username'),
),
]