[music] Fix jellyfin music scrobbling sort of
This commit is contained in:
18
vrobbler/apps/videos/migrations/0016_video_tmdb_id.py
Normal file
18
vrobbler/apps/videos/migrations/0016_video_tmdb_id.py
Normal file
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.2.15 on 2024-09-06 13:23
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("videos", "0015_alter_video_genre"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name="video",
|
||||
name="tmdb_id",
|
||||
field=models.CharField(blank=True, max_length=20, null=True),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user