11 lines
271 B
SQL
11 lines
271 B
SQL
-- +goose Up
|
|
-- +goose StatementBegin
|
|
-- add column bind_user_id to tenants
|
|
ALTER TABLE tenants ADD COLUMN bind_user_id INT8 NOT NULL DEFAULT 0;
|
|
-- +goose StatementEnd
|
|
|
|
-- +goose Down
|
|
-- +goose StatementBegin
|
|
DROP COLUMN bind_user_id FROM tenants;
|
|
-- +goose StatementEnd
|