MCPcopy
hub / github.com/sequelize/sequelize-auto / qNameJoin

Function qNameJoin

src/types.ts:106–108  ·  view source on GitHub ↗
(schema: string | undefined, table: string | undefined)

Source from the content-addressed store, hash-verified

104
105/** Get combined schema.table name */
106export function qNameJoin(schema: string | undefined, table: string | undefined) {
107 return !!schema ? schema + "." + table : table as string;
108}
109
110/** Language of output model files */
111export declare type LangOption = "es5" | "es6" | "esm" | "ts";

Callers 2

addRelationMethod · 0.90
addSchemaForRelationsMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected