validates :column, :presence => true, # 必須 :uniqueness => true, # ユニーク制約 :uniqueness => {:scope => :column2}, # 複数カラムでのユニーク制約 :numericality => only_integer, # 整数のみ :length => { :in => 10..100 }, # 長さ制約(〜以上、〜以下) :length => { :maximum => 100 } # 長さ制約(〜以下) :format => { :with => /regex/ } #正規表現マッチ