Browse Source

fix: bulk update all update system columns

pull/7373/head
mertmit 8 months ago
parent
commit
0332016f4e
  1. 3
      packages/nocodb/src/db/BaseModelSqlv2.ts

3
packages/nocodb/src/db/BaseModelSqlv2.ts

@ -3346,6 +3346,9 @@ class BaseModelSqlv2 {
this.dbDriver,
);
if (!args.skipValidationAndHooks) await this.validate(updateData);
await this.prepareNocoData(updateData, false, cookie);
const pkValues = await this._extractPksValues(updateData);
if (pkValues) {
// pk is specified - by pass

Loading…
Cancel
Save