Skip to content

Commit c172125

Browse files
authored
fix concurrent issue (#295)
1 parent 54c71e3 commit c172125

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

migrator.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ package postgres
33
import (
44
"database/sql"
55
"fmt"
6+
"github.com/jackc/pgx/v5"
67
"regexp"
78
"strings"
89

9-
"github.com/jackc/pgx/v5"
1010
"gorm.io/gorm"
1111
"gorm.io/gorm/clause"
1212
"gorm.io/gorm/migrator"
@@ -142,7 +142,7 @@ func (m Migrator) CreateIndex(value interface{}, name string) error {
142142
createIndexSQL += " ?"
143143
}
144144

145-
if idx.Option != "" {
145+
if idx.Option != "" && strings.TrimSpace(strings.ToUpper(idx.Option)) != "CONCURRENTLY" {
146146
createIndexSQL += " " + idx.Option
147147
}
148148

0 commit comments

Comments
 (0)