diff --git a/main.go b/main.go index a13bf6f2..abea9263 100644 --- a/main.go +++ b/main.go @@ -340,6 +340,10 @@ func (s *DB) DropTable(value interface{}) *DB { return s.clone().NewScope(value).dropTable().db } +func (s *DB) DropTableIfExists(value interface{}) *DB { + return s.clone().NewScope(value).dropTableIfExists().db +} + func (s *DB) AutoMigrate(value interface{}) *DB { return s.clone().NewScope(value).autoMigrate().db } diff --git a/scope_private.go b/scope_private.go index ca6b7eb5..4f25532a 100644 --- a/scope_private.go +++ b/scope_private.go @@ -495,6 +495,11 @@ func (scope *Scope) dropTable() *Scope { return scope } +func (scope *Scope) dropTableIfExists() *Scope { + scope.Raw(fmt.Sprintf("DROP TABLE IF EXISTS %v", scope.QuotedTableName())).Exec() + return scope +} + func (scope *Scope) modifyColumn(column string, typ string) { scope.Raw(fmt.Sprintf("ALTER TABLE %v MODIFY %v %v", scope.QuotedTableName(), scope.Quote(column), typ)).Exec() }