winterhazel commented on code in PR #10035:
URL: https://github.com/apache/cloudstack/pull/10035#discussion_r1869335921
##########
engine/schema/src/main/resources/META-INF/db/schema-41910to41920.sql:
##########
@@ -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`('volumes','last_id', 'bigint(20) unsigned
DEFAULT NULL');
Review Comment:
```suggestion
CALL `cloud`.`IDEMPOTENT_ADD_COLUMN`('cloud.volumes', 'last_id', 'bigint(20)
unsigned DEFAULT NULL');
```
I would specify the database as precaution
--
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]