Add migration for unique tags
This commit is contained in:
parent
3a9627f9b5
commit
21246bdd50
18
odyseescraper/migrations/0014_alter_tag_name.py
Normal file
18
odyseescraper/migrations/0014_alter_tag_name.py
Normal file
@ -0,0 +1,18 @@
|
||||
# Generated by Django 5.1.5 on 2025-01-24 22:24
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('odyseescraper', '0013_alter_odyseerelease_tags'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='tag',
|
||||
name='name',
|
||||
field=models.CharField(help_text='The name for this tag as it should be displayed across UIs', max_length=256, unique=True),
|
||||
),
|
||||
]
|
Loading…
x
Reference in New Issue
Block a user