mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
bug 6361: added some more comments
This commit is contained in:
parent
5bb4abac93
commit
cec26017a2
@ -202,12 +202,12 @@ listClusters=com.cloud.api.commands.ListClustersCmd;1
|
|||||||
enableStorageMaintenance=com.cloud.api.commands.PreparePrimaryStorageForMaintenanceCmd;1
|
enableStorageMaintenance=com.cloud.api.commands.PreparePrimaryStorageForMaintenanceCmd;1
|
||||||
cancelStorageMaintenance=com.cloud.api.commands.CancelPrimaryStorageMaintenanceCmd;1
|
cancelStorageMaintenance=com.cloud.api.commands.CancelPrimaryStorageMaintenanceCmd;1
|
||||||
|
|
||||||
#### network group commands
|
#### security group commands
|
||||||
createNetworkGroup=com.cloud.api.commands.CreateNetworkGroupCmd;11
|
createNetworkGroup=com.cloud.api.commands.CreateSecurityGroupCmd;11
|
||||||
deleteNetworkGroup=com.cloud.api.commands.DeleteNetworkGroupCmd;11
|
deleteNetworkGroup=com.cloud.api.commands.DeleteSecurityGroupCmd;11
|
||||||
authorizeNetworkGroupIngress=com.cloud.api.commands.AuthorizeNetworkGroupIngressCmd;11
|
authorizeNetworkGroupIngress=com.cloud.api.commands.AuthorizeSecurityGroupIngressCmd;11
|
||||||
revokeNetworkGroupIngress=com.cloud.api.commands.RevokeNetworkGroupIngressCmd;11
|
revokeNetworkGroupIngress=com.cloud.api.commands.RevokeSecurityGroupIngressCmd;11
|
||||||
listNetworkGroups=com.cloud.api.commands.ListNetworkGroupsCmd;11
|
listNetworkGroups=com.cloud.api.commands.ListSecurityGroupsCmd;11
|
||||||
|
|
||||||
registerPreallocatedLun=com.cloud.api.commands.RegisterPreallocatedLunCmd;1
|
registerPreallocatedLun=com.cloud.api.commands.RegisterPreallocatedLunCmd;1
|
||||||
deletePreallocatedLun=com.cloud.api.commands.DeletePreallocatedLunCmd;1
|
deletePreallocatedLun=com.cloud.api.commands.DeletePreallocatedLunCmd;1
|
||||||
|
|||||||
@ -11,5 +11,9 @@ ALTER TABLE `vm_instance` DROP COLUMN `group`
|
|||||||
-- NOTE for tables below
|
-- NOTE for tables below
|
||||||
-- these 2 tables were used in 2.1, but are not in 2.2
|
-- these 2 tables were used in 2.1, but are not in 2.2
|
||||||
-- we will need a migration script for these tables when the migration is written
|
-- we will need a migration script for these tables when the migration is written
|
||||||
|
-- furthermore we have renamed the following in 2.2
|
||||||
|
-- network_group table --> security_group table
|
||||||
|
-- network_group_vm_map table --> security_group_vm_map table
|
||||||
DROP TABLE `cloud`.`security_group`;
|
DROP TABLE `cloud`.`security_group`;
|
||||||
DROP TABLE `cloud`.`security_group_vm_map`;
|
DROP TABLE `cloud`.`security_group_vm_map`;
|
||||||
|
--END NOTE
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user