6 lines
117 B
Ruby
6 lines
117 B
Ruby
class Article < ApplicationRecord
|
|
belongs_to :user
|
|
has_many :comments
|
|
|
|
validates_presence_of :title, :post
|
|
end
|