* Apply the migrations from the migrations directory to the database. * This is the command behind prisma migrate deploy.
(input: SchemaEngineInput<'applyMigrations'>)
| 128 | * This is the command behind prisma migrate deploy. |
| 129 | */ |
| 130 | public applyMigrations(input: SchemaEngineInput<'applyMigrations'>): SchemaEngineOutput<'applyMigrations'> { |
| 131 | return this.runCommand('applyMigrations', input) |
| 132 | } |
| 133 | |
| 134 | /** |
| 135 | * Create the next migration in the migrations history. |
nothing calls this directly
no test coverage detected