method
arel_table
v4.0.2 -
Show latest stable
- Class:
ActiveRecord::Core::ClassMethods
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