Whitespace cleanup
[merb_mart.git] / app / models / tag.rb
blobdb6b0bf0899443a4b4418ed1d3ad148a90b6dae4
1 require 'dm-validations'
3 # A free-form, flat taxonomoy.
5 class Tag
7   include DataMapper::Resource
9   property :id,         Fixnum, :serial => true
10   property :name,       String, :length => 100, :nullable => false, :key => :unique
11   property :rank,       Fixnum
13   validates_present   :name
14   validates_is_unique :rank
16   def self.all_ordered
17     all(:order => [ :name.asc ])
18   end
20 end