7 lines
123 B
Ruby
7 lines
123 B
Ruby
class Pin < ApplicationRecord
|
|
belongs_to :card
|
|
belongs_to :user
|
|
|
|
scope :ordered, -> { order(created_at: :desc) }
|
|
end
|