Browse Source

fix: pass transaction reference

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/5816/head
Pranav C 1 year ago
parent
commit
4378516352
  1. 2
      packages/nocodb/src/services/tables.service.ts

2
packages/nocodb/src/services/tables.service.ts

@ -189,7 +189,7 @@ export class TablesService {
}
// verify column exist or not and based on that delete the column
if (!(await Column.get({ colId: c.id }))) {
if (!(await Column.get({ colId: c.id }, ncMeta))) {
continue;
}

Loading…
Cancel
Save