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:
Aaron Gable 2021-02-23 16:09:33 -08:00 committed by GitHub
parent 8c1a9dd842
commit 5a081515a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 0 deletions

View File

@ -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;