(prismaSchemaFile: string, _options: StatusOptions)
| 119 | } |
| 120 | |
| 121 | function runStatus(prismaSchemaFile: string, _options: StatusOptions) { |
| 122 | try { |
| 123 | execPrisma(`migrate status --schema "${prismaSchemaFile}"`); |
| 124 | } catch (err) { |
| 125 | handleSubProcessError(err); |
| 126 | } |
| 127 | } |
| 128 | |
| 129 | function runResolve(prismaSchemaFile: string, options: ResolveOptions) { |
| 130 | if (!options.applied && !options.rolledBack) { |
no test coverage detected