mirror of
https://github.com/onepanelio/onepanel.git
synced 2025-12-24 12:14:40 +08:00
8 lines
294 B
SQL
8 lines
294 B
SQL
-- +goose Up
|
|
-- SQL in this section is executed when the migration is applied.
|
|
ALTER TABLE workspace_templates ADD COLUMN description TEXT DEFAULT '';
|
|
|
|
-- +goose Down
|
|
-- SQL in this section is executed when the migration is rolled back.
|
|
ALTER TABLE workspace_templates DROP COLUMN description;
|