add thumbnail feature
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
JMARyA 2024-12-16 23:45:15 +01:00
parent 0d0265ab14
commit 764bef6457
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
5 changed files with 113 additions and 11 deletions

View file

@ -0,0 +1,7 @@
CREATE TABLE video_thumbnail (
"id" UUID NOT NULL PRIMARY KEY,
"time" FLOAT NOT NULL,
"precomputed" BYTEA NOT NULL,
"custom" BYTEA
);