mirror of https://github.com/apache/cloudstack.git
move sql code to the right file (#10035)
Co-authored-by: Fabricio Duarte <fabricio.duarte.jr@gmail.com>
This commit is contained in:
parent
52584d93dc
commit
762d5493dd
|
|
@ -70,6 +70,3 @@ CALL `cloud`.`IDEMPOTENT_ADD_COLUMN`('cloud.user_data', 'removed', 'datetime COM
|
|||
UPDATE `cloud`.`configuration` SET
|
||||
`options` = 'FirstFitRouting,RandomAllocator,TestingAllocator,FirstFitAllocator,RecreateHostAllocator'
|
||||
WHERE `name` = 'host.allocators.order';
|
||||
|
||||
-- Add last_id to the volumes table
|
||||
CALL `cloud`.`IDEMPOTENT_ADD_COLUMN`('volumes','last_id', 'bigint(20) unsigned DEFAULT NULL');
|
||||
|
|
|
|||
|
|
@ -18,3 +18,6 @@
|
|||
--;
|
||||
-- Schema upgrade from 4.19.1.0 to 4.19.2.0
|
||||
--;
|
||||
|
||||
-- Add last_id to the volumes table
|
||||
CALL `cloud`.`IDEMPOTENT_ADD_COLUMN`('cloud.volumes', 'last_id', 'bigint(20) unsigned DEFAULT NULL');
|
||||
|
|
|
|||
Loading…
Reference in New Issue