* Get the database version for error reporting. * If no argument is given, the version of the database associated to the Prisma schema provided * in the constructor will be returned.
(input?: SchemaEngineInput<'version'>)
| 200 | * in the constructor will be returned. |
| 201 | */ |
| 202 | public getDatabaseVersion(input?: SchemaEngineInput<'version'>): SchemaEngineOutput<'version'> { |
| 203 | return this.runCommand('version', input) |
| 204 | } |
| 205 | |
| 206 | /** |
| 207 | * Given a Prisma schema, introspect the database definitions and update the schema with the results. |
nothing calls this directly
no test coverage detected