(
value: boolean | string,
columnNames: string[],
type: 'unique' | 'index' | 'primary' | 'foreign',
)
| 270 | } |
| 271 | |
| 272 | private getIndexName( |
| 273 | value: boolean | string, |
| 274 | columnNames: string[], |
| 275 | type: 'unique' | 'index' | 'primary' | 'foreign', |
| 276 | ): string { |
| 277 | if (typeof value === 'string') { |
| 278 | return value; |
| 279 | } |
| 280 | |
| 281 | return this.#platform.getIndexName(this.name, columnNames, type); |
| 282 | } |
| 283 | |
| 284 | getEntityDeclaration( |
| 285 | namingStrategy: NamingStrategy, |
no outgoing calls
no test coverage detected