diff --git a/cmd_status.go b/cmd_status.go index 0bbf752..85123ee 100644 --- a/cmd_status.go +++ b/cmd_status.go @@ -50,7 +50,7 @@ func statusRun(cmd *Command, args ...string) { } func printMigrationStatus(db *sql.DB, version int, script string) { - var row DBVersion + var row MigrationRecord q := fmt.Sprintf("SELECT tstamp, is_applied FROM goose_db_version WHERE version_id=%d ORDER BY tstamp DESC LIMIT 1", version) e := db.QueryRow(q).Scan(&row.TStamp, &row.IsApplied) diff --git a/migrate.go b/migrate.go index 27ac687..c9a2f06 100644 --- a/migrate.go +++ b/migrate.go @@ -15,7 +15,7 @@ import ( "time" ) -type DBVersion struct { +type MigrationRecord struct { VersionId int TStamp time.Time IsApplied bool // was this a result of up() or down() @@ -215,7 +215,7 @@ func ensureDBVersion(db *sql.DB) (int, error) { toSkip := make([]int, 0) for rows.Next() { - var row DBVersion + var row MigrationRecord if err = rows.Scan(&row.VersionId, &row.IsApplied); err != nil { log.Fatal("error scanning rows:", err) }