4
0
mirror of https://github.com/1f349/dendrite.git synced 2025-03-15 08:33:11 +00:00

10 lines
274 B
MySQL
Raw Normal View History

-- +goose Up
-- +goose StatementBegin
ALTER TABLE account_accounts ADD COLUMN IF NOT EXISTS is_deactivated BOOLEAN DEFAULT FALSE;
-- +goose StatementEnd
-- +goose Down
-- +goose StatementBegin
ALTER TABLE account_accounts DROP COLUMN is_deactivated;
-- +goose StatementEnd