method
tables_in_string
v2.3.8 -
Show latest stable
- Class:
ActiveRecord::Associations::ClassMethods
tables_in_string(string)private
No documentation available.
# File activerecord/lib/active_record/associations.rb, line 1707
def tables_in_string(string)
return [] if string.blank?
string.scan(/([\.a-zA-Z_]+).?\./).flatten
end