1 require 'dm-validations'
3 # A free-form, flat taxonomoy.
7 include DataMapper::Resource
9 property :id, Integer, :serial => true
10 property :name, String, :length => 100, :nullable => false, :key => :unique
11 property :rank, Integer
13 validates_present :name
14 validates_is_unique :rank
17 all(:order => [ :name.asc ])