= private = protected
table_exists?(table_name)
Checks to see if the table table_name exists on the database.
table_exists?(:developers)
# File activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb, line 23 def table_exists?(table_name) tables.include?(table_name.to_s) end