mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-26 15:13:20 +02:00
14 lines
344 B
MySQL
14 lines
344 B
MySQL
![]() |
ALTER TABLE `certificate`
|
||
|
ADD COLUMN `revocation_id` INT NULL DEFAULT NULL
|
||
|
AFTER `hold_instruction_code`;
|
||
|
|
||
|
ALTER TABLE `crl`
|
||
|
ADD COLUMN `max_revocation_id` INT NULL DEFAULT NULL
|
||
|
AFTER `items`;
|
||
|
|
||
|
ALTER TABLE `certificate`
|
||
|
ADD UNIQUE `revocation_id` (`revocation_id`);
|
||
|
|
||
|
ALTER TABLE `crl`
|
||
|
ADD KEY `revocation_id` (`max_revocation_id`);
|