module SchemaPlus::Tables::Middleware::Migration::DropTable::Sqlite3
Public Instance Methods
implement(env)
click to toggle source
# File lib/schema_plus/tables/middleware.rb, line 27 def implement(env) env.connection.execute Sql.drop_table(env, support_temporary: false, support_cascade: false) end