Project

General

Profile

Download (357 Bytes) Statistics
| Branch: | Tag: | Revision:
class Technique < ActiveRecord::Base
has_and_belongs_to_many :artworks, :order => "title ASC"

validates_presence_of :name
validates_uniqueness_of :name
validates_uniqueness_of :acronym, :allow_nil => true
validates_length_of :name, :within => 1..128, :allow_blank => true
validates_length_of :acronym, :within => 1..8, :allow_blank => true
end
(11-11/12)