IOTS-325: Fixing cannot delete a policy associated with a group

This commit is contained in:
Rasika Perera 2016-12-22 10:58:54 +05:30
parent 99fa092a72
commit 4cd2b94303

View File

@ -1361,6 +1361,11 @@ public class PolicyDAOImpl implements PolicyDAO {
stmt.setInt(1, policyId);
stmt.executeUpdate();
String deleteGroup = "DELETE FROM DM_DEVICE_GROUP_POLICY WHERE POLICY_ID = ?";
stmt = conn.prepareStatement(deleteGroup);
stmt.setInt(1, policyId);
stmt.executeUpdate();
if (log.isDebugEnabled()) {
log.debug("Policy (" + policyId + ") related configs deleted from database.");
}