5 lines
79 B
Ruby
5 lines
79 B
Ruby
|
|
class Comment < ApplicationRecord
|
||
|
|
belongs_to :user
|
||
|
|
belongs_to :article
|
||
|
|
end
|