Files
onepanel/db/sql/20200810132237_add_description_to_workspace_templates.sql
2020-08-10 15:06:38 -07:00

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;