mirror of
https://github.com/onepanelio/onepanel.git
synced 2025-09-27 01:56:03 +08:00
8 lines
244 B
SQL
8 lines
244 B
SQL
-- +goose Up
|
|
-- SQL in this section is executed when the migration is applied.
|
|
ALTER TABLE workspaces ADD COLUMN capture_node boolean;
|
|
UPDATE workspaces SET capture_node = false;
|
|
|
|
-- +goose Down
|
|
ALTER TABLE workspaces DROP COLUMN capture_node;
|