We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af9fefc commit 2d37b74Copy full SHA for 2d37b74
1 file changed
engine/schema/src/main/resources/META-INF/db/schema-41120to41200.sql
@@ -46,3 +46,6 @@ INSERT IGNORE INTO `cloud`.`configuration` VALUES ('Storage', 'DEFAULT', 'Storag
46
-- add KVM Guest OS mapping for Windows Server 2019
47
INSERT IGNORE INTO `cloud`.`guest_os` (id, uuid, category_id, display_name, created) VALUES (276, UUID(), 6, 'Windows Server 2019 (64-bit)', now());
48
INSERT IGNORE INTO `cloud`.`guest_os_hypervisor` (uuid, hypervisor_type, hypervisor_version, guest_os_name, guest_os_id, created, is_user_defined) VALUES (UUID(), 'KVM', 'default', 'Windows Server 2019', 276, now(), 0);
49
+
50
+-- changed fingerprint type to TEXT, it avoids db exception when creating the certificate issue #3123
51
+ALTER TABLE `cloud`.`sslcerts` MODIFY `fingerprint` TEXT;
0 commit comments