Asset-Tracker/app/models/asset.rb

10 lines
170 B
Ruby
Raw Normal View History

2011-06-15 01:08:28 +00:00
class Asset < ActiveRecord::Base
validates_presence_of :tag, :category
has_many :comments
has_many :softwares
def tag_with_name
"#{tag} - #{name}"
end
end