Skip to content

Commit

Permalink
Address feedback
Browse files Browse the repository at this point in the history
Co-authored-by: Andrew Farries <[email protected]>
  • Loading branch information
agedemenli and andrew-farries authored Jan 8, 2025
1 parent 9a391ec commit 2e4fa45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/migrations/op_create_table.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ func (o *OpCreateTable) Start(ctx context.Context, conn db.DB, latestSchema stri
return nil, fmt.Errorf("failed to create columns SQL: %w", err)
}

// Create the table using the original name
// Create the table
_, err = conn.ExecContext(ctx, fmt.Sprintf("CREATE TABLE %s (%s)",
pq.QuoteIdentifier(o.Name),
columnsSQL))
Expand Down

0 comments on commit 2e4fa45

Please sign in to comment.