feat: reimplementd GetTVShow handler

This commit is contained in:
2024-11-06 02:19:26 +01:00
parent cba9dd3ffc
commit dd3853af7b
9 changed files with 28 additions and 128 deletions
@@ -8,7 +8,8 @@ create table if not exists tv_show (
updated_at timestamp not null default (now())
);
create index if not exists idx_tv_show_title on "tv_show" ("title");
create index if not exists idx_tv_show_name on "tv_show" ("name");
create index if not exists idx_tv_show_tt_imdb on "tv_show" ("tt_imdb");
create index if not exists idx_tv_show_updated_at on "tv_show" ("updated_at");
create table if not exists episodes (