d9494a5
1
2
3
4
5
6
export const customNamePrefix = '_'; export const computeTableName = (nameSingular: string, isCustom: boolean) => { return isCustom ? `${customNamePrefix}${nameSingular}` : nameSingular; };