mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-10-06 14:34:54 +02:00
Update to 2021-12-01 19:13
This commit is contained in:
13
roles/openxpki/files/upgrade_to_v3.4.sql
Normal file
13
roles/openxpki/files/upgrade_to_v3.4.sql
Normal file
@@ -0,0 +1,13 @@
|
||||
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`);
|
Reference in New Issue
Block a user