Files
silo-server/migrations/sql/134_library_collection_poster_template_origin.sql
T

11 lines
315 B
SQL

-- +goose Up
-- +goose StatementBegin
ALTER TABLE library_collections
ADD COLUMN IF NOT EXISTS poster_from_template BOOLEAN NOT NULL DEFAULT FALSE;
-- +goose StatementEnd
-- +goose Down
-- +goose StatementBegin
ALTER TABLE library_collections DROP COLUMN IF EXISTS poster_from_template;
-- +goose StatementEnd