You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
812 B
26 lines
812 B
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11 on 2018-04-13 18:39
|
|
from __future__ import unicode_literals
|
|
|
|
import django.core.validators
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('accounts_app', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='baseaccount',
|
|
name='username',
|
|
field=models.CharField(max_length=127, unique=True, validators=[django.core.validators.RegexValidator('^\\w{1,127}$')], verbose_name='profile username'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='userprofile',
|
|
name='avatar',
|
|
field=models.ImageField(default=None, null=True, upload_to='user/avatar', verbose_name='Avatar'),
|
|
),
|
|
]
|