Flowdock
method

arel_table

Importance_1
arel_table() public

Returns an instance of Arel::Table loaded with the current table name.

class Post < ActiveRecord::Base
  scope :published_and_commented, -> { published.and(self.arel_table[:comments_count].gt(0)) }
end
Show source
Register or log in to add new notes.