This commit is contained in:
Pierre Noël 2022-11-17 11:41:12 +01:00
parent 9ff4f19660
commit b4295cf521

View File

@ -5,6 +5,6 @@ const addSchema = (tableName) => {
return schemaName ? `${schemaName}.${tableName}` : tableName;
};
module.export = {
module.exports = {
addSchema,
};