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 3fa3085 commit c667681Copy full SHA for c667681
oracle/migrator.go
@@ -500,7 +500,7 @@ func (m Migrator) DropType(typeName string) error {
500
return fmt.Errorf("DropOracleType: typeName is required")
501
}
502
503
- sql := fmt.Sprintf(`DROP TYPE "%s";`, strings.ToLower(typeName))
+ sql := fmt.Sprintf(`DROP TYPE "%s"`, strings.ToLower(typeName))
504
505
return m.DB.Exec(sql).Error
506
0 commit comments