Skip to content

Commit 84224ec

Browse files
authored
fix: fix migrator recognizing nextval('"table_id_seq"'::regclass) (#304)
1 parent 04418c9 commit 84224ec

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
@@ -495,8 +495,8 @@ func (m Migrator) ColumnTypes(value interface{}) (columnTypes []gorm.ColumnType,
495495
column.LengthValue = typeLenValue
496496
}
497497

498-
if (strings.HasPrefix(column.DefaultValueValue.String, "nextval('") &&
499-
strings.HasSuffix(column.DefaultValueValue.String, "seq'::regclass)")) || (identityIncrement.Valid && identityIncrement.String != "") {
498+
autoIncrementValuePattern := regexp.MustCompile(`^nextval\('"?[^']+seq"?'::regclass\)$`)
499+
if autoIncrementValuePattern.MatchString(column.DefaultValueValue.String) || (identityIncrement.Valid && identityIncrement.String != "") {
500500
column.AutoIncrementValue = sql.NullBool{Bool: true, Valid: true}
501501
column.DefaultValueValue = sql.NullString{}
502502
}

0 commit comments

Comments
 (0)