* Development command for migrations. * Evaluate the data loss induced by the next migration the engine would generate on the main database.
(args: EngineArgs.EvaluateDataLossInput)
| 171 | * Evaluate the data loss induced by the next migration the engine would generate on the main database. |
| 172 | */ |
| 173 | public evaluateDataLoss(args: EngineArgs.EvaluateDataLossInput): Promise<EngineResults.EvaluateDataLossOutput> { |
| 174 | return this.runCommand(this.getRPCPayload('evaluateDataLoss', args)) |
| 175 | } |
| 176 | |
| 177 | public getDatabaseDescription(schema: string): Promise<string> { |
| 178 | return this.runCommand(this.getRPCPayload('getDatabaseDescription', { schema })) |
nothing calls this directly
no test coverage detected