We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 670eadb commit 4e22bceCopy full SHA for 4e22bce
oracle/migrator.go
@@ -202,7 +202,7 @@ func (m Migrator) CreateTable(values ...interface{}) error {
202
createTableSQL += ")"
203
204
if tableOption, ok := m.DB.Get("gorm:table_options"); ok {
205
- createTableSQL += fmt.Sprint(tableOption)
+ createTableSQL += " " + fmt.Sprint(tableOption)
206
}
207
208
err = tx.Exec(createTableSQL, values...).Error
0 commit comments