* Execute a database script directly on the specified live database. * Note that this may not be defined on all connectors.
(input: SchemaEngineInput<'dbExecute'>)
| 145 | * Note that this may not be defined on all connectors. |
| 146 | */ |
| 147 | public async dbExecute(input: SchemaEngineInput<'dbExecute'>) { |
| 148 | await this.runCommand('dbExecute', input) |
| 149 | return null |
| 150 | } |
| 151 | |
| 152 | /** |
| 153 | * Make the Schema engine panic. Only useful to test client error handling. |
nothing calls this directly
no test coverage detected