All checks were successful
continuous-integration/drone/push Build is passing
12 lines
387 B
SQL
12 lines
387 B
SQL
-- +goose Up
|
|
-- +goose StatementBegin
|
|
ALTER TABLE incidents RENAME COLUMN subcategory to sub_category;
|
|
ALTER TABLE "Incoming" RENAME COLUMN subcategory to sub_category;
|
|
-- +goose StatementEnd
|
|
|
|
-- +goose Down
|
|
-- +goose StatementBegin
|
|
ALTER TABLE incidents RENAME COLUMN sub_category to subcategory;
|
|
ALTER TABLE "Incoming" RENAME COLUMN sub_category to subcategory;
|
|
-- +goose StatementEnd
|