vereto-api/app/models/article.rb
2018-02-22 16:00:39 +00:00

6 lines
117 B
Ruby

class Article < ApplicationRecord
belongs_to :user
has_many :comments
validates_presence_of :title, :post
end