mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-13 23:31:34 +00:00
4e8c484618
* Implement account deactivation See #610 Signed-off-by: Loïck Bonniot <git@lesterpig.com> * Rename 'is_active' to 'is_deactivated' Signed-off-by: Loïck Bonniot <git@lesterpig.com> Co-authored-by: Kegsay <kegan@matrix.org>
10 lines
274 B
SQL
10 lines
274 B
SQL
-- +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
|