hello-learning/blog/app/models/article.rb
2019-08-06 22:50:19 -05:00

5 lines
159 B
Ruby

class Article < ApplicationRecord
has_many :comments, dependent: :destroy
validates :title, presence: true,
length: { minimum: 5 }
end