~linuxgoose/bocpress

ref: 4f522586f42d78c476acc3415de577d0191a67cd bocpress/main/migrations/0060_auto_20210429_1506.py -rw-r--r-- 1.0 KiB
4f522586Jordan Robinson update markdown export to include the tag list 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Generated by Django 3.2 on 2021-04-29 15:06

from django.db import migrations, models

import main.validators


class Migration(migrations.Migration):
    dependencies = [
        ("main", "0059_auto_20210409_1320"),
    ]

    operations = [
        migrations.AlterField(
            model_name="user",
            name="email",
            field=models.EmailField(
                blank=True,
                help_text="Optional, but also the only way to recover password if forgotten.",
                max_length=254,
                null=True,
            ),
        ),
        migrations.AlterField(
            model_name="user",
            name="username",
            field=models.CharField(
                error_messages={"unique": "A user with that username already exists."},
                help_text="This is your subdomain. Lowercase alphanumeric.",
                max_length=150,
                unique=True,
                validators=[main.validators.AlphanumericHyphenValidator()],
            ),
        ),
    ]