Files
silo-server/migrations/sql/033_plugin_update_policy.sql
T

14 lines
355 B
SQL
Raw Normal View History

-- +goose Up
-- +goose StatementBegin
ALTER TABLE plugin_installations
ADD COLUMN update_policy TEXT NOT NULL DEFAULT 'auto',
ADD COLUMN available_version TEXT;
-- +goose StatementEnd
-- +goose Down
-- +goose StatementBegin
ALTER TABLE plugin_installations
DROP COLUMN update_policy,
DROP COLUMN available_version;
-- +goose StatementEnd