Skip to content

Instantly share code, notes, and snippets.

@tigawa
Last active December 11, 2015 20:09
Show Gist options
  • Save tigawa/4653270 to your computer and use it in GitHub Desktop.
Save tigawa/4653270 to your computer and use it in GitHub Desktop.
ruby rails 入力チェック
#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