method

drop_table

Importance_0
v4.0.2 - 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 28
    def self.drop_table
      if connection.table_exists?(table_name)
        connection.remove_index table_name, name: index_name
        connection.drop_table(table_name)
      end
    end
Register or log in to add new notes.