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 d411e3f commit 7714d43Copy full SHA for 7714d43
scripts/process-remaining-ubahn-uuids.js
@@ -40,7 +40,7 @@ const processRemainingUUIDs = async (tableName, columnNames) => {
40
41
let sql = ''
42
for (const [key, value] of Object.entries(uuidToHandleMap)) {
43
- if (!_.isUndefined(handleToIDMap(value.toLowerCase()))) {
+ if (!_.isUndefined(handleToIDMap[value.toLowerCase()])) {
44
sql += `UPDATE bookings.${tableName} SET ${columnName} = ${handleToIDMap(value)} WHERE ${columnName} = ${key};`
45
}
46
0 commit comments