11 lines
305 B
SQL
11 lines
305 B
SQL
|
|
-- +goose Up
|
|
-- SQL in section 'Up' is executed when this migration is applied
|
|
ALTER TABLE `ocspResponses` MODIFY `response` mediumblob NOT NULL;
|
|
|
|
|
|
-- +goose Down
|
|
-- SQL section 'Down' is executed when this migration is rolled back
|
|
ALTER TABLE `ocspResponses` MODIFY `response` mediumblob DEFAULT NULL;
|
|
|