21 lines
655 B
SQL
21 lines
655 B
SQL
|
|
-- +goose Up
|
|
-- SQL in section 'Up' is executed when this migration is applied
|
|
|
|
CREATE TABLE `fqdnSets` (
|
|
`id` INT(11) NOT NULL AUTO_INCREMENT,
|
|
-- SHA256 hash of alphabetically sorted, lowercased, comma joined
|
|
-- DNS names contained in a certificate
|
|
`setHash` BINARY(32) NOT NULL,
|
|
`serial` VARCHAR(255) UNIQUE NOT NULL,
|
|
`issued` DATETIME NOT NULL,
|
|
`expires` DATETIME NOT NULL,
|
|
PRIMARY KEY (`id`),
|
|
KEY `setHash_issued_idx` (`setHash`, `issued`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
|
-- +goose Down
|
|
-- SQL section 'Down' is executed when this migration is rolled back
|
|
|
|
DROP TABLE `fqdnSets`;
|