6 lines
164 B
TypeScript
6 lines
164 B
TypeScript
import { camelCase } from 'src/utils/camel-case';
|
|
|
|
export const createRelationForeignKeyFieldMetadataName = (name: string) => {
|
|
return `${camelCase(name)}Id`;
|
|
};
|