Last active
December 11, 2015 20:09
-
-
Save tigawa/4653270 to your computer and use it in GitHub Desktop.
ruby rails 入力チェック
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#app/models/product.rb | |
#必須入力チェック | |
validates :description, :image_url, :price, :title , presence: true | |
#数値属性チェック | |
validates :price , numericality: {greater_than_of_equal_to: 0.01} | |
#重複チェック | |
validates :title, uniqueness: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment