boulder/sa/_db/migrations/20150826211856_AddChallenge...

13 lines
285 B
SQL

-- +goose Up
-- SQL in section 'Up' is executed when this migration is applied
ALTER TABLE `challenges` ADD COLUMN (
`accountKey` mediumblob
);
-- +goose Down
-- SQL section 'Down' is executed when this migration is rolled back
ALTER TABLE `challenges` DROP COLUMN `accountKey`;