Files
fizzy/app/models/pin.rb
T
2025-04-05 15:15:48 +02:00

7 lines
125 B
Ruby

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