Breaking up a migration because it was a mistake to cobble them together (#27)
This commit is contained in:
parent
117653c001
commit
02c94d442e
@ -0,0 +1,15 @@
|
|||||||
|
-- +goose Up
|
||||||
|
-- +goose StatementBegin
|
||||||
|
SELECT 'up SQL query';
|
||||||
|
ALTER TABLE articles
|
||||||
|
ADD COLUMN CodeIsRelease bool,
|
||||||
|
ADD COLUMN CodeIsCommit bool;
|
||||||
|
-- +goose StatementEnd
|
||||||
|
|
||||||
|
-- +goose Down
|
||||||
|
-- +goose StatementBegin
|
||||||
|
SELECT 'down SQL query';
|
||||||
|
Alter TABLE articles
|
||||||
|
DROP COLUMN CodeIsRelease,
|
||||||
|
DROP COLUMN CodeIsCommit
|
||||||
|
-- +goose StatementEnd
|
Loading…
Reference in New Issue
Block a user