mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-14 15:51:37 +00:00
10 lines
274 B
MySQL
10 lines
274 B
MySQL
|
-- +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
|