Answers for "rails check length"

0

validates length rails

class Person < ApplicationRecord
  validates :name, length: { minimum: 2 }
  validates :bio, length: { maximum: 500 }
  validates :password, length: { in: 6..20 }
  validates :registration_number, length: { is: 6 }
end
Posted by: Guest on January-15-2021

Browse Popular Code Answers by Language