mirror of https://github.com/apache/cloudstack.git
Signed-off-by: Abhishek Kumar <abhishek.mrt22@gmail.com>
This commit is contained in:
parent
f905f5f39a
commit
841fd72560
|
|
@ -19,9 +19,6 @@
|
|||
-- Schema upgrade from 4.18.0.0 to 4.18.1.0
|
||||
--;
|
||||
|
||||
-- create_public_parameter_on_roles. #6960
|
||||
ALTER TABLE `cloud`.`roles` ADD COLUMN `public_role` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'Indicates whether the role will be visible to all users (public) or only to root admins (private). If this parameter is not specified during the creation of the role its value will be defaulted to true (public).';
|
||||
|
||||
-- Add Windows Server 2022 guest OS and mappings
|
||||
CALL ADD_GUEST_OS_AND_HYPERVISOR_MAPPING (6, 'Windows Server 2022 (64-bit)', 'KVM', 'default', 'Windows Server 2022 (64-bit)');
|
||||
CALL ADD_GUEST_OS_AND_HYPERVISOR_MAPPING (6, 'Windows Server 2022 (64-bit)', 'VMware', '7.0', 'windows2019srvNext_64Guest');
|
||||
|
|
|
|||
|
|
@ -135,3 +135,5 @@ CREATE VIEW `cloud`.`async_job_view` AS
|
|||
UPDATE `cloud`.`console_session` SET removed=now();
|
||||
-- Modify acquired column in console_session to datetime type
|
||||
ALTER TABLE `cloud`.`console_session` DROP `acquired`, ADD `acquired` datetime COMMENT 'When the session was acquired' AFTER `host_id`;
|
||||
-- create_public_parameter_on_roles. #6960
|
||||
ALTER TABLE `cloud`.`roles` ADD COLUMN `public_role` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'Indicates whether the role will be visible to all users (public) or only to root admins (private). If this parameter is not specified during the creation of the role its value will be defaulted to true (public).';
|
||||
|
|
|
|||
Loading…
Reference in New Issue