8 行
160 B
Ruby
8 行
160 B
Ruby
class TheatreSkipVote < ApplicationRecord
|
|
self.primary_key = :theatre_id, :post_id, :user_id
|
|
|
|
belongs_to :theatre
|
|
belongs_to :post
|
|
belongs_to :user
|
|
end
|