Files
vctp2/db/migrations/20241001222729_add_placeholder.sql
Nathan Coad f80dfe9027
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 vm name and placeholder change to updates table
2024-10-02 13:14:09 +10:00

12 lines
319 B
SQL

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