fix: return joined err when try to get migrations list (#862)

pull/907/head
R0masik 2025-02-04 04:44:39 +03:00 committed by GitHub
parent 2829d46672
commit fa06062cdc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 1 deletions

View File

@ -5,6 +5,7 @@ import (
"database/sql" "database/sql"
"errors" "errors"
"fmt" "fmt"
"go.uber.org/multierr"
"io/fs" "io/fs"
"math" "math"
"path" "path"
@ -213,7 +214,11 @@ func EnsureDBVersion(db *sql.DB) (int64, error) {
func EnsureDBVersionContext(ctx context.Context, db *sql.DB) (int64, error) { func EnsureDBVersionContext(ctx context.Context, db *sql.DB) (int64, error) {
dbMigrations, err := store.ListMigrations(ctx, db, TableName()) dbMigrations, err := store.ListMigrations(ctx, db, TableName())
if err != nil { if err != nil {
return 0, createVersionTable(ctx, db) createErr := createVersionTable(ctx, db)
if createErr != nil {
return 0, multierr.Append(err, createErr)
}
return 0, nil
} }
// The most recent record for each migration specifies // The most recent record for each migration specifies
// whether it has been applied or rolled back. // whether it has been applied or rolled back.