datasquirel/dist/package-shared/utils/db/schema/grab-target-table-schema.js
Benjamin Toby 7e8bb37c09 Updates
2025-07-05 14:59:30 +01:00

5 lines
185 B
JavaScript

export default function grabTargetTableSchema({ tables, tableName, }) {
const targetTable = tables.find((tbl) => tableName && tableName == tbl.tableName);
return targetTable;
}