(prismaSchemaFile: string, _options: DeployOptions)
| 110 | } |
| 111 | |
| 112 | function runDeploy(prismaSchemaFile: string, _options: DeployOptions) { |
| 113 | try { |
| 114 | const cmd = ['migrate deploy', ` --schema "${prismaSchemaFile}"`].join(''); |
| 115 | execPrisma(cmd); |
| 116 | } catch (err) { |
| 117 | handleSubProcessError(err); |
| 118 | } |
| 119 | } |
| 120 | |
| 121 | function runStatus(prismaSchemaFile: string, _options: StatusOptions) { |
| 122 | try { |
no test coverage detected