type
MigrationPhaseStatus
type MigrationPhaseStatus struct {
ID string `json:"id"`
Mode ridumigration.PhaseMode `json:"mode"`
State string `json:"state"`
Steps []MigrationStepStatus `json:"steps"`
}One immutable phase and its step checkpoints.
Source adapters/postgres/migrate.go:75
IDstring- The ID value.
Modemigration.PhaseMode- The Mode value.
Statestring- The State value.
Steps[]MigrationStepStatus- The Steps value.