~linuxgoose/bocpress

ref: fc7fd38fc9a86697d34a1476f78013539452d592 bocpress/main/migrations/0054_auto_20210312_1643.py -rw-r--r-- 666 bytes
fc7fd38fJordan Robinson add dashboard welcome text 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-03-12 16:43

from django.db import migrations, models

import main.validators


class Migration(migrations.Migration):
    dependencies = [
        ("main", "0053_notification_is_active"),
    ]

    operations = [
        migrations.AlterField(
            model_name="user",
            name="custom_domain",
            field=models.CharField(
                blank=True,
                help_text="To setup: Add an A record in your domain's DNS with IP 95.217.177.163",
                max_length=150,
                null=True,
                validators=[main.validators.validate_domain_name],
            ),
        ),
    ]