| 435 | } |
| 436 | |
| 437 | type SqlExecutor interface { |
| 438 | Exec(query string, args ...interface{}) (sql.Result, error) |
| 439 | Insert(list ...interface{}) error |
| 440 | Delete(list ...interface{}) (int64, error) |
| 441 | } |
| 442 | |
| 443 | // Execute a set of migrations |
| 444 | // |
no outgoing calls
no test coverage detected
searching dependent graphs…