~linuxgoose/bocpress

ref: 7aed0b0bd7c12e24d98cc947655f01325566f967 bocpress/main/migrations/0050_auto_20210101_1509.py -rw-r--r-- 660 bytes
7aed0b0bJordan Robinson update readme 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
# Generated by Django 3.1 on 2021-01-01 15:09

from django.db import migrations, models

import main.validators


class Migration(migrations.Migration):
    dependencies = [
        ("main", "0049_user_redirect_domain"),
    ]

    operations = [
        migrations.AlterField(
            model_name="user",
            name="redirect_domain",
            field=models.CharField(
                blank=True,
                help_text="Retiring your mataroa blog? We can redirect to your new domain.",
                max_length=150,
                null=True,
                validators=[main.validators.validate_domain_name],
            ),
        ),
    ]