Sha256: e45a31f4339ad515c53d398c0e70dd83f3eac793e1fd8df22d879611ce3f7da3

Contents?: true

Size: 573 Bytes

Versions: 3

Compression:

Stored size: 573 Bytes

Contents

class IdentifierType < ActiveRecord::Base
  attr_accessible :display_name, :name, :note, :position
  include MasterModel
  default_scope order: "identifier_types.position"
  has_many :identifiers
  validates :name, format: {with: /\A[0-9a-z][0-9a-z_\-]*[0-9a-z]\Z/}
end

# == Schema Information
#
# Table name: identifier_types
#
#  id           :integer          not null, primary key
#  name         :string(255)
#  display_name :text
#  note         :text
#  position     :integer
#  created_at   :datetime         not null
#  updated_at   :datetime         not null
#

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
enju_biblio-0.1.0.pre58 app/models/identifier_type.rb
enju_biblio-0.1.0.pre57 app/models/identifier_type.rb
enju_biblio-0.1.0.pre56 app/models/identifier_type.rb