fixes #5522 Loggable - Deadlock en inserción múltiple #1430

Merged
juan merged 3 commits from 5522-loggable-deadlock into dev 2023-04-12 15:44:45 +00:00
2 changed files with 4 additions and 1 deletions
Showing only changes of commit 7e1d6f4339 - Show all commits

View File

@ -50,7 +50,7 @@ describe('Item editFixedPrice()', () => {
await models.FixedPrice.editFixedPrice(ctx, field, newValue, null, filter, options); await models.FixedPrice.editFixedPrice(ctx, field, newValue, null, filter, options);
const [result] = await models.FixedPrice.filter(ctx, null, options); const [result] = await models.FixedPrice.filter(ctx, filter, options);
expect(result[field]).toEqual(newValue); expect(result[field]).toEqual(newValue);

View File

@ -20,6 +20,9 @@
}, },
"created": { "created": {
"type": "date" "type": "date"
},
"isChecked": {
"type": "boolean"
} }
}, },
"relations": { "relations": {