root/app/models/artwork_material.rb @ 4fe0d35d
b689e231 | Marc Dequènes (Duck) | class ArtworkMaterial < ActiveRecord::Base
|
|
has_many :artworks, :order => "title ASC"
|
|||
validates_presence_of :name
|
|||
validates_uniqueness_of :name
|
|||
validates_length_of :name, :within => 1..128, :allow_blank => true
|
|||
end
|