Kyoo/transcoder/migrations/000001_init_db.up.sql
2024-08-08 17:03:35 +02:00

19 lines
331 B
PL/PgSQL

begin;
create table if not exists info(
sha varchar(20) not null primary key,
path varchar(4096) not null unique,
extension varchar(256),
mime_codec varchar(1024),
size bigint not null,
duration real not null,
container varchar(256)
);
create table if not exists videos(
sha varchar(20) not null primary key,
)
commit;