Files
zulip/zerver/migrations/0462_realmplayground_url_template.py
Anders Kaseorg 21ab3858a7 models: Extract zerver.models.linkifiers.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
2023-12-16 22:08:44 -08:00

20 lines
512 B
Python

# Generated by Django 4.2.1 on 2023-05-27 00:06
from django.db import migrations, models
from zerver.models.linkifiers import url_template_validator
class Migration(migrations.Migration):
dependencies = [
("zerver", "0461_alter_realm_default_code_block_language"),
]
operations = [
migrations.AddField(
model_name="realmplayground",
name="url_template",
field=models.TextField(null=True, validators=[url_template_validator]),
),
]