Files
vctp2/db/migrations_postgres/20240912231739_extend_updates.sql
Nathan Coad ea1eeb5c21
Some checks failed
continuous-integration/drone Build is passing
CI / Lint (push) Has been cancelled
CI / Test (push) Has been cancelled
CI / End-to-End (push) Has been cancelled
CI / Publish Docker (push) Has been cancelled
update to support postgresql and add godocs
2026-01-13 17:05:14 +11:00

12 lines
315 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