Files
vctp2/db/migrations/20240926022714_updates_user.sql
T
nathan f712c7254f
CI / Lint (push) Waiting to run
CI / Test (push) Waiting to run
CI / End-to-End (push) Waiting to run
continuous-integration/drone/push Build is passing
CI / Publish Docker (push) Blocked by required conditions
add username data to updates table
2024-09-26 12:31:14 +10:00

10 lines
217 B
SQL

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