boulder/sa/_db/migrations/20160601135920_RemoveDenied...

14 lines
351 B
SQL

-- +goose Up
-- SQL in section 'Up' is executed when this migration is applied
DROP TABLE `deniedCSRs`;
-- +goose Down
-- SQL section 'Down' is executed when this migration is rolled back
CREATE TABLE `deniedCSRs` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`names` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;