Add earing Impaired suptitle flag support (#754)

This commit is contained in:
Felipe Marinho
2025-01-03 21:26:51 -03:00
committed by GitHub
parent cd89e757c1
commit 2ee313d5f6
12 changed files with 101 additions and 26 deletions
@@ -0,0 +1,5 @@
begin;
alter table subtitles drop column is_hearing_impaired;
commit;
@@ -0,0 +1,5 @@
begin;
alter table subtitles add column is_hearing_impaired boolean not null default false;
commit;