~linuxgoose/bocpress

ref: 6eda6226133fa1c7b2a397b1007bee11dc2d3379 bocpress/main/migrations/0062_auto_20210516_2310.py -rw-r--r-- 1.2 KiB
6eda6226Jordan Robinson add help text for tags 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
36
37
38
39
# Generated by Django 3.2 on 2021-05-16 23:10

from django.db import migrations, models


class Migration(migrations.Migration):
    dependencies = [
        ("main", "0061_auto_20210503_0035"),
    ]

    operations = [
        migrations.AddField(
            model_name="user",
            name="mail_export_on",
            field=models.BooleanField(
                default=False,
                help_text="Enable/disable auto emailing of account exports every month.",
                verbose_name="Mail export",
            ),
        ),
        migrations.AlterField(
            model_name="user",
            name="comments_on",
            field=models.BooleanField(
                default=False,
                help_text="Enable/disable comments for your blog.",
                verbose_name="Comments",
            ),
        ),
        migrations.AlterField(
            model_name="user",
            name="notifications_on",
            field=models.BooleanField(
                default=False,
                help_text="Allow/disallow people subscribing for email newsletter for new posts.",
                verbose_name="Newsletter",
            ),
        ),
    ]