Allow starting next in series
This commit is contained in:
21
vrobbler/apps/videos/migrations/0013_video_next_imdb_id.py
Normal file
21
vrobbler/apps/videos/migrations/0013_video_next_imdb_id.py
Normal file
@ -0,0 +1,21 @@
|
||||
# Generated by Django 4.1.5 on 2023-03-15 17:52
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
(
|
||||
"videos",
|
||||
"0012_remove_series_tags_remove_video_tags_series_genre_and_more",
|
||||
),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name="video",
|
||||
name="next_imdb_id",
|
||||
field=models.CharField(blank=True, max_length=20, null=True),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user