({
schemaName,
tableName,
}: {
schemaName: string | null | undefined;
tableName: string;
})
| 56 | }); |
| 57 | |
| 58 | export const generateTableKey = ({ |
| 59 | schemaName, |
| 60 | tableName, |
| 61 | }: { |
| 62 | schemaName: string | null | undefined; |
| 63 | tableName: string; |
| 64 | }) => `${schemaNameToDomainSchemaName(schemaName) ?? ''}.${tableName}`; |
| 65 | |
| 66 | export const adjustTablePositions = ({ |
| 67 | relationships: inputRelationships, |
no test coverage detected