Files
fizzy/app/models/pin.rb
T
2025-04-09 14:50:58 +02:00

7 lines
123 B
Ruby

class Pin < ApplicationRecord
belongs_to :card
belongs_to :user
scope :ordered, -> { order(created_at: :desc) }
end