[videos] Fix saving imdb_id duplicates
All checks were successful
build & deploy / test (push) Successful in 2m1s
build & deploy / deploy (push) Successful in 22s

This commit is contained in:
2026-03-21 14:35:39 -04:00
parent a36abacfbd
commit 190f486c49
5 changed files with 88 additions and 68 deletions

View File

@ -0,0 +1,24 @@
# Generated by Django 4.2.29 on 2026-03-21 18:29
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("videos", "0024_remove_video_run_time_seconds_and_more"),
]
operations = [
migrations.AlterUniqueTogether(
name="video",
unique_together=set(),
),
migrations.AlterField(
model_name="video",
name="imdb_id",
field=models.CharField(
blank=True, max_length=20, null=True, unique=True
),
),
]