Drop never-used CRLs table (#5303)
This table was part of the initial schema, but no Boulder code has ever written to or read from it. Part of #5254
This commit is contained in:
parent
8c1a9dd842
commit
5a081515a7
|
|
@ -0,0 +1,16 @@
|
|||
|
||||
-- +goose Up
|
||||
-- SQL in section 'Up' is executed when this migration is applied
|
||||
|
||||
DROP TABLE `crls`;
|
||||
|
||||
-- +goose Down
|
||||
-- SQL section 'Down' is executed when this migration is rolled back
|
||||
|
||||
CREATE TABLE `crls` (
|
||||
`serial` varchar(255) NOT NULL,
|
||||
`createdAt` datetime NOT NULL,
|
||||
`crl` varchar(255) NOT NULL,
|
||||
PRIMARY KEY (`serial`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
Loading…
Reference in New Issue