mysteriendrama/lib/python3.11/site-packages/django/contrib/redirects/migrations/0002_alter_redirect_new_path_help_text.py
2023-07-22 12:13:39 +02:00

24 lines
635 B
Python

from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("redirects", "0001_initial"),
]
operations = [
migrations.AlterField(
model_name="redirect",
name="new_path",
field=models.CharField(
blank=True,
help_text=(
"This can be either an absolute path (as above) or a full "
"URL starting with a scheme such as “https://”."
),
max_length=200,
verbose_name="redirect to",
),
),
]