mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-05-27 11:26:13 +00:00
Add ability to delete artwork from database
This commit is contained in:
parent
d7364afbf5
commit
05a375d826
2 changed files with 12 additions and 1 deletions
|
@ -551,6 +551,11 @@ delete_episode = """
|
|||
DELETE FROM episode
|
||||
WHERE idEpisode = ?
|
||||
"""
|
||||
delete_art = """
|
||||
DELETE FROM art
|
||||
WHERE media_id = ?
|
||||
AND media_type = ?
|
||||
"""
|
||||
delete_backdrops = """
|
||||
DELETE FROM art
|
||||
WHERE media_id = ?
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue