add project subtraction amounts.
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-04-05 23:59:27 +02:00
parent 01bc6a8e55
commit c5af5860bf
9 changed files with 97 additions and 49 deletions
@@ -0,0 +1,11 @@
-- +goose Up
-- +goose StatementBegin
ALTER TABLE project
ADD COLUMN subtract_amount INT NOT NULL DEFAULT 0;
-- +goose StatementEnd
-- +goose Down
-- +goose StatementBegin
ALTER TABLE project
DROP COLUMN IF EXISTS subtract_amount;
-- +goose StatementEnd