7 行
158 B
Ruby
7 行
158 B
Ruby
class PostSimilarity < ApplicationRecord
|
|
self.primary_key = :post_id, :target_post_id
|
|
|
|
belongs_to :post
|
|
belongs_to :target_post, class_name: 'Post'
|
|
end
|