* 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.
(args?: MigrateTypes.GetDatabaseVersionParams)
| 184 | * in the constructor will be returned. |
| 185 | */ |
| 186 | public getDatabaseVersion(args?: MigrateTypes.GetDatabaseVersionParams): Promise<string> { |
| 187 | return this.runCommand(this.getRPCPayload('getDatabaseVersion', args)) |
| 188 | } |
| 189 | |
| 190 | /** |
| 191 | * Given a Prisma schema, introspect the database definitions and update the schema with the results. |
nothing calls this directly
no test coverage detected