project_attributes.rb 145 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 class ProjectAttributes < ActiveRecord::Base belongs_to :user belongs_to :project def project Project.find(self.project_id) end end