rohityadavcloud commented on code in PR #9759:
URL: https://github.com/apache/cloudstack/pull/9759#discussion_r1806184490
##########
engine/schema/src/main/resources/META-INF/db/schema-41900to41910.sql:
##########
@@ -70,3 +70,5 @@ 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';
+
+CALL `cloud`.`IDEMPOTENT_ADD_COLUMN`('volumes','last_id', 'bigint(20) unsigned
DEFAULT NULL');
Review Comment:
```suggestion
-- Add last_id to the volumes table
CALL `cloud`.`IDEMPOTENT_ADD_COLUMN`('volumes','last_id', 'bigint(20)
unsigned DEFAULT NULL');
```
##########
engine/schema/src/main/resources/META-INF/db/schema-41900to41910.sql:
##########
@@ -70,3 +70,5 @@ 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';
+
+CALL `cloud`.`IDEMPOTENT_ADD_COLUMN`('volumes','last_id', 'bigint(20) unsigned
DEFAULT NULL');
Review Comment:
```suggestion
-- Add last_id to the volumes table
CALL `cloud`.`IDEMPOTENT_ADD_COLUMN`('volumes','last_id', 'bigint(20)
unsigned DEFAULT NULL');
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]