(target: ExecutableDrizzleDb)
| 393 | ): Promise<void> => { |
| 394 | const statements = createDrizzleRuntimeSchemaSql(options); |
| 395 | const run = async (target: ExecutableDrizzleDb) => { |
| 396 | for (const statement of statements) { |
| 397 | await runStatement(target, statement); |
| 398 | } |
| 399 | }; |
| 400 | |
| 401 | if (db.transaction) { |
| 402 | await db.transaction(run); |
no test coverage detected