(cmd *cobra.Command, args []string)
| 64 | } |
| 65 | |
| 66 | func (h *MigrateHandler) MigrateSQLDown(cmd *cobra.Command, args []string) (err error) { |
| 67 | p, err := h.makeMigrationManager(cmd, args) |
| 68 | if err != nil { |
| 69 | return err |
| 70 | } |
| 71 | return popx.MigrateSQLDown(cmd, p) |
| 72 | } |
| 73 | |
| 74 | func (h *MigrateHandler) MigrateStatus(cmd *cobra.Command, args []string) error { |
| 75 | p, err := h.makeMigrationManager(cmd, args) |
nothing calls this directly
no test coverage detected