method
arel_table
v5.1.7 -
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(arel_table[:comments_count].gt(0)) } end