Returns the number of applied migrations.
(ctx context.Context, db *sql.DB, dialect string, m MigrationSource, dir MigrationDirection)
| 461 | |
| 462 | // Returns the number of applied migrations. |
| 463 | func (ms MigrationSet) ExecContext(ctx context.Context, db *sql.DB, dialect string, m MigrationSource, dir MigrationDirection) (int, error) { |
| 464 | return ms.ExecMaxContext(ctx, db, dialect, m, dir, 0) |
| 465 | } |
| 466 | |
| 467 | // Execute a set of migrations |
| 468 | // |
nothing calls this directly
no test coverage detected