highway/app/models/prize.rb
2025-05-12 15:31:38 -04:00

5 lines
150 B
Ruby

class Prize < ApplicationRecord
has_one_attached :image # Stores prize images
has_many :user_prizes
has_many :users, through: :user_prizes
end