6 lines
144 B
Ruby
6 lines
144 B
Ruby
|
class OrgCourse < ActiveRecord::Base
|
||
|
#attr_accessible :organization, :course, :created_at
|
||
|
belongs_to :organization
|
||
|
belongs_to :course
|
||
|
end
|