mirror of
https://github.com/quantum5/qlinks.git
synced 2025-08-02 22:08:14 -04:00
20 lines
610 B
Python
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'),
|
|
),
|
|
]
|