socialforge/app/models/org_subfield.rb

9 lines
221 B
Ruby
Raw Normal View History

2015-12-04 17:34:48 +08:00
class OrgSubfield < ActiveRecord::Base
belongs_to :organization, :foreign_key => :organization_id
has_many :org_document_comments, :dependent => :destroy
has_many :files
acts_as_attachable
def project
end
2015-12-04 17:34:48 +08:00
end