mirror of
https://github.com/etesync/server
synced 2024-11-22 16:58:08 +00:00
9d6e0ae60a
This is in preparation for creating a python package, which should only occupy the "etebase_server" name in the global module namespace.
27 lines
786 B
Python
27 lines
786 B
Python
# Generated by Django 3.0.3 on 2020-05-15 08:01
|
|
|
|
from django.db import migrations, models
|
|
import etebase_server.myauth.models as myauth_models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("myauth", "0001_initial"),
|
|
]
|
|
|
|
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=[myauth_models.UnicodeUsernameValidator()],
|
|
verbose_name="username",
|
|
),
|
|
),
|
|
]
|