Updating to reflect changes in DM 0.9.1
[merb_mart.git] / app / models / role.rb
blob8e9bc6a62891b7bb795149fc57687a1289db9dd7
1 class Role
3   include DataMapper::Resource
5   property :id,          Integer, :serial => true
6   property :name,        String
7   property :description, DataMapper::Types::Text
9   #many_to_many :users
10   #many_to_many :rights #, :order => 'name ASC'
12 end