prerender preview size

This commit is contained in:
2021-10-24 13:22:14 +00:00
parent 3d1671d6b5
commit 08310f78bb
9 changed files with 67 additions and 20 deletions

View File

@ -0,0 +1,11 @@
-- +goose Up
-- +goose StatementBegin
alter table videos
add previewratio FLOAT default -1.0 null;
-- +goose StatementEnd
-- +goose Down
-- +goose StatementBegin
alter table videos
drop previewratio;
-- +goose StatementEnd