12 lines
327 B
SQL
12 lines
327 B
SQL
-- +goose Up
|
|
-- +goose StatementBegin
|
|
ALTER TABLE "Inventory" ADD COLUMN IsTemplate INTEGER;
|
|
ALTER TABLE "Inventory" ADD COLUMN PowerState INTEGER;
|
|
-- +goose StatementEnd
|
|
|
|
-- +goose Down
|
|
-- +goose StatementBegin
|
|
ALTER TABLE "Updates" DROP COLUMN PowerState;
|
|
ALTER TABLE "Updates" DROP COLUMN IsTemplate;
|
|
-- +goose StatementEnd
|