~linuxgoose/bocpress

ref: HEAD bocpress/main/migrations/0056_auto_20210317_2313.py -rw-r--r-- 664 bytes
7337de89Jordan Robinson update email host to be fetched from .env 7 days 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.7 on 2021-03-17 23:13

from django.db import migrations, models

import main.validators


class Migration(migrations.Migration):
    dependencies = [
        ("main", "0055_user_theme_zialucia"),
    ]

    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.30.133",
                max_length=150,
                null=True,
                validators=[main.validators.validate_domain_name],
            ),
        ),
    ]