vereto-api/app/models/article.rb

7 lines
117 B
Ruby
Raw Normal View History

2018-02-19 16:03:07 +00:00
class Article < ApplicationRecord
belongs_to :user
2018-02-22 16:00:39 +00:00
has_many :comments
2018-02-19 16:03:07 +00:00
validates_presence_of :title, :post
end