bigdir/app/models/attachmentstype.rb

5 lines
161 B
Ruby
Raw Normal View History

class Attachmentstype < ActiveRecord::Base
attr_accessible :typeId, :typeName
has_many :attachments, :foreign_key => "attachtype",:primary_key => "id"
end