mirror of
https://github.com/DependencyTrack/dependency-track.git
synced 2025-10-19 07:53:18 +00:00
Merge pull request #5420 from stohrendorf/fix-cpe-fix
This commit is contained in:
commit
2688b1f90f
1 changed files with 3 additions and 3 deletions
|
@ -47,9 +47,9 @@ public class v4135Updater extends AbstractUpgradeItem {
|
|||
SET "PART" = LOWER("PART"),
|
||||
"VENDOR" = LOWER("VENDOR"),
|
||||
"PRODUCT" = LOWER("PRODUCT")
|
||||
WHERE "PART <> LOWER("PART")
|
||||
OR "VENDOR <> LOWER("VENDOR")
|
||||
OR "PRODUCT <> LOWER("PRODUCT")"
|
||||
WHERE "PART" <> LOWER("PART")
|
||||
OR "VENDOR" <> LOWER("VENDOR")
|
||||
OR "PRODUCT" <> LOWER("PRODUCT")
|
||||
""");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue