Module: SchemaPlus::Tables::Middleware::Migration::DropTable::Postgresql

Defined in:
lib/schema_plus/tables/middleware.rb

Instance Method Summary collapse

Instance Method Details

#implement(env) ⇒ Object



21
22
23
# 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