method

drop_table

drop_table()
public

No documentation available.

# 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