Browse Source

fix: do index creation only if relation found

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/5980/head
Pranav C 2 years ago
parent
commit
1a21215eb5
  1. 2
      packages/nocodb/src/version-upgrader/ncXcdbLTARUpgrader.ts

2
packages/nocodb/src/version-upgrader/ncXcdbLTARUpgrader.ts

@ -77,7 +77,6 @@ async function upgradeModelRelations({
childTable: relation.tn, childTable: relation.tn,
foreignKeyName: relation.cstn, foreignKeyName: relation.cstn,
}); });
}
// skip postgres since we were already creating the index while creating the relation // skip postgres since we were already creating the index while creating the relation
if (ncMeta.knex.clientType() !== 'pg') { if (ncMeta.knex.clientType() !== 'pg') {
@ -90,6 +89,7 @@ async function upgradeModelRelations({
await sqlClient.indexCreate(indexArgs); await sqlClient.indexCreate(indexArgs);
} }
} }
}
break; break;
} }

Loading…
Cancel
Save