~linuxgoose/bocpress

ref: 4f522586f42d78c476acc3415de577d0191a67cd bocpress/main/migrations/0015_auto_20200607_0023.py -rw-r--r-- 633 bytes
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
# Generated by Django 3.0.7 on 2020-06-07 00:23

from django.db import migrations, models

import main.validators


class Migration(migrations.Migration):
    dependencies = [
        ("main", "0014_auto_20200607_0017"),
    ]

    operations = [
        migrations.AlterField(
            model_name="user",
            name="custom_domain",
            field=models.CharField(
                help_text="DNS: CNAME your .mataroa.blog subdomain or A with IP 95.217.176.64",
                max_length=150,
                null=True,
                validators=[main.validators.validate_domain_name],
            ),
        ),
    ]