Kyoo/transcoder/migrations/000005_fingerprints.up.sql
2026-04-17 22:24:25 +02:00

14 lines
332 B
PL/PgSQL

begin;
alter table gocoder.info add column ver_fingerprint integer not null default 0;
create table gocoder.fingerprints(
id integer not null primary key references gocoder.info(id) on delete cascade,
start_data text not null,
end_data text not null
);
alter table gocoder.chapters add column match_accuracy integer;
commit;