Files
vctp2/db/migrations/20240912231739_extend_updates.sql
Nathan Coad f0278388cb
Some checks are pending
CI / Lint (push) Waiting to run
CI / Test (push) Waiting to run
CI / End-to-End (push) Waiting to run
CI / Publish Docker (push) Blocked by required conditions
continuous-integration/drone/push Build is passing
sql updates
2024-09-13 09:25:12 +10:00

12 lines
307 B
SQL

-- +goose Up
-- +goose StatementBegin
ALTER TABLE "Updates" ADD COLUMN EventKey TEXT;
ALTER TABLE "Updates" ADD COLUMN EventId TEXT;
-- +goose StatementEnd
-- +goose Down
-- +goose StatementBegin
ALTER TABLE "Updates" DROP COLUMN EventKey;
ALTER TABLE "Updates" DROP COLUMN EventId;
-- +goose StatementEnd