Railsバリデーションの履歴
modelに設定する
class Product < ActiveRecord::Base
validates_presence_of :title, :description, :image_url #必須項目
validates_numericality_of :price #数字かどうか
end
modelに設定する
class Product < ActiveRecord::Base
validates_presence_of :title, :description, :image_url #必須項目
validates_numericality_of :price #数字かどうか
end