Files
vctp2/db/migrations/20241002032439_add_name.sql
Nathan Coad f94339446d
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
fix migration
2024-10-02 13:25:06 +10:00

10 lines
209 B
SQL

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