Remove old info cache

This commit is contained in:
2024-07-29 23:24:05 +02:00
parent e91e0151ba
commit 3ea2004267
2 changed files with 2 additions and 66 deletions
+1 -1
View File
@@ -59,7 +59,7 @@ create table subtitles(
path varchar(4096)
);
create type chapter_type as enum('content', 'recap', 'intro', 'credits');
create type chapter_type as enum('content', 'recap', 'intro', 'credits', 'preview');
create table chapters(
sha varchar(20) not null references info(sha) on delete cascade,