| 5 | import { FKSpec } from "./dialects/dialect-options"; |
| 6 | |
| 7 | export interface Table { |
| 8 | name?: string; |
| 9 | table_name: string; |
| 10 | table_schema?: string; |
| 11 | } |
| 12 | |
| 13 | export interface Field extends ColumnDescription { |
| 14 | foreignKey: any; |
nothing calls this directly
no outgoing calls
no test coverage detected