* Create the logical database from the Prisma schema.
(args: EngineArgs.CreateDatabaseInput)
| 110 | * Create the logical database from the Prisma schema. |
| 111 | */ |
| 112 | public createDatabase(args: EngineArgs.CreateDatabaseInput): Promise<EngineResults.CreateDatabaseOutput> { |
| 113 | return this.runCommand(this.getRPCPayload('createDatabase', args)) |
| 114 | } |
| 115 | |
| 116 | /** |
| 117 | * Create the next migration in the migrations history. |
nothing calls this directly
no test coverage detected