Skip to content

Commit

Permalink
LPS-198382 Fix condition as the localized object field exists in anot…
Browse files Browse the repository at this point in the history
…her table and is deleted after
  • Loading branch information
carolmariaabb authored and brianchandotcom committed Oct 9, 2023
1 parent 1f70693 commit 05f2b44
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -977,7 +977,8 @@ else if (!deleteRelationshipObjectField) {
ObjectFieldConstants.BUSINESS_TYPE_AGGREGATION) &&
!objectField.compareBusinessType(
ObjectFieldConstants.BUSINESS_TYPE_FORMULA) &&
!Objects.equals(objectField.getDBTableName(), "ObjectEntry")) {
!Objects.equals(objectField.getDBTableName(), "ObjectEntry") &&
!objectField.isLocalized()) {

_alterTableDropColumn(
objectField.getDBTableName(), objectField.getDBColumnName());
Expand Down

0 comments on commit 05f2b44

Please sign in to comment.