~linuxgoose/bocpress

ref: 24df4b02a220bbdb59b1e19a5db8f49119de9f74 bocpress/main/migrations/0052_auto_20210124_1932.py -rw-r--r-- 861 bytes
24df4b02Jordan Robinson fix tags with hyphen not working on fitler 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
# Generated by Django 3.1 on 2021-01-24 19:32

from django.db import migrations, models


class Migration(migrations.Migration):
    dependencies = [
        ("main", "0051_auto_20210111_2111"),
    ]

    operations = [
        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",
            ),
        ),
    ]