mirror of
https://github.com/databasus/databasus.git
synced 2026-04-06 00:32:03 +02:00
19 lines
347 B
SQL
19 lines
347 B
SQL
-- +goose Up
|
|
-- +goose StatementBegin
|
|
|
|
ALTER TABLE webhook_notifiers
|
|
ADD COLUMN body_template TEXT,
|
|
ADD COLUMN headers TEXT DEFAULT '[]';
|
|
|
|
-- +goose StatementEnd
|
|
|
|
-- +goose Down
|
|
-- +goose StatementBegin
|
|
|
|
ALTER TABLE webhook_notifiers
|
|
DROP COLUMN body_template,
|
|
DROP COLUMN headers;
|
|
|
|
-- +goose StatementEnd
|
|
|