mirror of
https://github.com/System-End/highway.git
synced 2026-04-19 23:22:53 +00:00
5 lines
150 B
Ruby
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
|