feat: refs #6449 add summaryId on delete
gitea/mylogger/pipeline/pr-master This commit looks good Details

This commit is contained in:
Jorge Penadés 2024-06-11 15:50:18 +02:00
parent 66e8f149ea
commit 8e5c2af4ee
1 changed files with 3 additions and 1 deletions

View File

@ -96,7 +96,8 @@ module.exports = class MyLogger {
SET originFk = ?, SET originFk = ?,
creationDate = ?, creationDate = ?,
oldInstance = ?, oldInstance = ?,
changedModelValue = ? changedModelValue = ?,
summaryId = ?
WHERE id = ?` WHERE id = ?`
); );
} }
@ -539,6 +540,7 @@ module.exports = class MyLogger {
created, created,
oldInstance, oldInstance,
modelValue, modelValue,
summaryId,
deleteRow.id deleteRow.id
]); ]);
} }