Flowdock
method

from!

Importance_0
from!(value, subquery_name = nil) 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/relation/query_methods.rb, line 758
    def from!(value, subquery_name = nil) # :nodoc:
      self.from_value = [value, subquery_name]
      if value.is_a? Relation
        self.bind_values = value.arel.bind_values + value.bind_values + bind_values
      end
      self
    end
Register or log in to add new notes.