module SchemaPlus::Tables::Middleware::Migration::DropTable::Postgresql

Public Instance Methods

implement(env) click to toggle source
# File lib/schema_plus/tables/middleware.rb, line 21
def implement(env)
  env.connection.execute Sql.drop_table(env, support_temporary: false, support_cascade: true)
end