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