11 lines
183 B
Ruby
11 lines
183 B
Ruby
class Page < ActiveRecord::Base
|
|
belongs_to :user, class_name: Person
|
|
belongs_to :person
|
|
|
|
scope :last_ten, -> { order(updated_at: :desc).limit(10) }
|
|
|
|
def to_i
|
|
id
|
|
end
|
|
end
|