Sha256: a2ca8c52f49793764a55e36befc3255b04de30ef7549777d8c4926367d765c26
Contents?: true
Size: 485 Bytes
Versions: 19
Compression:
Stored size: 485 Bytes
Contents
class RequestType < ActiveRecord::Base include MasterModel validates :name, presence: true, format: { with: /\A[0-9A-Za-z][0-9A-Za-z_\-\s,]*[0-9a-z]\Z/ } private def valid_name? true end end # == Schema Information # # Table name: request_types # # id :integer not null, primary key # name :string not null # display_name :text # note :text # position :integer # created_at :datetime # updated_at :datetime #
Version data entries
19 entries across 17 versions & 2 rubygems