qlinks/qlinks/migrations/0003_short_allow_slash.py
2023-07-05 01:22:18 -04:00

20 lines
610 B
Python

from django.db import migrations
import qlinks.fields
class Migration(migrations.Migration):
dependencies = [
('qlinks', '0002_link_next_check'),
]
operations = [
migrations.AlterField(
model_name='link',
name='short',
field=qlinks.fields.ShortURLField(blank=True,
help_text='the part of URL after / that will redirect to the long URL, e.g. https://my.short.link/[slug]',
max_length=64, unique=True, verbose_name='short link slug'),
),
]