(path: string)
| 52 | export const LEDGER_TABLE = "provider_service_split_org_migration"; |
| 53 | |
| 54 | const parseInputJson = (path: string): MigrationInput => |
| 55 | JSON.parse(readFileSync(path, "utf8")) as MigrationInput; |
| 56 | |
| 57 | const readRows = async <T extends readonly object[]>(sql: SqlClient, query: string): Promise<T> => |
| 58 | sql.unsafe<T>(query); |