1
0
Fork 0

cleaned the code a bit up

Dieser Commit ist enthalten in:
Sebastian Tobie 2021-02-27 14:04:35 +01:00
Ursprung d38cf41d23
Commit 1f800c0089
1 geänderte Dateien mit 1 neuen und 2 gelöschten Zeilen

Datei anzeigen

@ -104,14 +104,13 @@ func logmigrations(version int32, name string, dir string, sql string) {
// SetupMigrator sets up the migrator to migrate the database.
func SetupMigrator(prefix string, connection *pgx.Conn, migrations fs.FS) (mig *migrate.Migrator, err error) {
migfs := &iofsMigratorFS{fsys: migrations}
mig, err = migrate.NewMigratorEx(
context.TODO(),
connection,
"version",
&migrate.MigratorOptions{
DisableTx: false,
MigratorFS: migfs,
MigratorFS: &iofsMigratorFS{fsys: migrations},
},
)
if err != nil {