method
tables
tables(name = nil)
public
Hide source
# File activerecord/lib/active_record/connection_adapters/mysql_adapter.rb, line 403 def tables(name = nil) #:nodoc: tables = [] execute("SHOW TABLES", name).each { |field| tables << field[0] } tables end