We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93e9b9a commit 3e69b5bCopy full SHA for 3e69b5b
engine/schema/src/main/java/com/cloud/upgrade/dao/Upgrade42010to42100.java
@@ -91,7 +91,7 @@ private void performKeyPairMigration(Connection conn) throws SQLException {
91
92
preparedStatement.executeUpdate();
93
}
94
- pstmt = conn.prepareStatement("ALTER TABLE `cloud`.`user` DROP COLUMN IF EXISTS api_key, DROP COLUMN IF EXISTS secret_key;");
+ pstmt = conn.prepareStatement("ALTER TABLE `cloud`.`user` DROP COLUMN api_key, DROP COLUMN secret_key;");
95
pstmt.executeUpdate();
96
logger.info("Successfully performed keypair migration.");
97
} catch (SQLException ex) {
0 commit comments