~linuxgoose/bocpress

ref: ea974b0aa571d976764ecd593298392f8a41e35d bocpress/main/migrations/0027_auto_20200610_1904.py -rw-r--r-- 591 bytes
ea974b0aJordan Robinson change markdown library to markdown-it-python and add Graphviz support 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
# Generated by Django 3.0.7 on 2020-06-10 19:04

from django.db import migrations, models

import main.validators


class Migration(migrations.Migration):
    dependencies = [
        ("main", "0026_auto_20200610_1854"),
    ]

    operations = [
        migrations.AlterField(
            model_name="page",
            name="slug",
            field=models.CharField(
                help_text="Lowercase letters, numbers, and - (hyphen) allowed.",
                max_length=300,
                validators=[main.validators.AlphanumericHyphenValidator()],
            ),
        ),
    ]