Files
vctp2/db/migrations/20241002033323_add_change.sql
Nathan Coad f9b8e25c2f
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
add raw string to database
2024-10-02 13:37:59 +10:00

10 lines
231 B
SQL

-- +goose Up
-- +goose StatementBegin
ALTER TABLE "Updates" ADD COLUMN RawChangeString BLOB;
-- +goose StatementEnd
-- +goose Down
-- +goose StatementBegin
ALTER TABLE "Updates" DROP COLUMN RawChangeString;
-- +goose StatementEnd