12 lines
339 B
SQL
12 lines
339 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 "Inventory" DROP COLUMN "PowerState";
|
|
ALTER TABLE "Inventory" DROP COLUMN "IsTemplate";
|
|
-- +goose StatementEnd
|