~linuxgoose/bocpress

ref: 1240aa09969f0449c2cd2cc6e0643c1723d0afeb bocpress/main/migrations/0032_auto_20200620_1431.py -rw-r--r-- 897 bytes
1240aa09Jordan Robinson update wording 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
# Generated by Django 3.0.7 on 2020-06-20 14:31

from django.db import migrations, models


class Migration(migrations.Migration):
    dependencies = [
        ("main", "0031_auto_20200620_1344"),
    ]

    operations = [
        migrations.AlterField(
            model_name="user",
            name="webring_next_url",
            field=models.URLField(
                blank=True,
                help_text="URL for your webring's next website.",
                null=True,
                verbose_name="Webring next URL",
            ),
        ),
        migrations.AlterField(
            model_name="user",
            name="webring_prev_url",
            field=models.URLField(
                blank=True,
                help_text="URL for your webring's previous website.",
                null=True,
                verbose_name="Webring previous URL",
            ),
        ),
    ]