* Apply the migrations from the migrations directory to the database. * This is the command behind prisma migrate deploy.
(args: EngineArgs.ApplyMigrationsInput)
| 103 | * This is the command behind prisma migrate deploy. |
| 104 | */ |
| 105 | public applyMigrations(args: EngineArgs.ApplyMigrationsInput): Promise<EngineResults.ApplyMigrationsOutput> { |
| 106 | return this.runCommand(this.getRPCPayload('applyMigrations', args)) |
| 107 | } |
| 108 | |
| 109 | /** |
| 110 | * Create the logical database from the Prisma schema. |
nothing calls this directly
no test coverage detected