Flowdock
method

drop_table

Importance_0
v4.2.7 - Show latest stable - 0 notes - Class: SchemaMigration
drop_table() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/schema_migration.rb, line 36
      def drop_table
        if table_exists?
          connection.remove_index table_name, name: index_name
          connection.drop_table(table_name)
        end
      end
Register or log in to add new notes.