Skip to content

Commit 5017dcb

Browse files
authored
fix: typo in error message when creating seed table (#3089)
* migration history: fix typo in create seed table error message * fix typo
1 parent 867ef97 commit 5017dcb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/migration/history.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ func CreateSeedTable(ctx context.Context, conn *pgx.Conn) error {
5858
batch.ExecParams(CREATE_VERSION_SCHEMA, nil, nil, nil, nil)
5959
batch.ExecParams(CREATE_SEED_TABLE, nil, nil, nil, nil)
6060
if _, err := conn.PgConn().ExecBatch(ctx, &batch).ReadAll(); err != nil {
61-
return errors.Errorf("failed to create migration table: %w", err)
61+
return errors.Errorf("failed to create seed table: %w", err)
6262
}
6363
return nil
6464
}

0 commit comments

Comments
 (0)