8 lines
182 B
Ruby
8 lines
182 B
Ruby
|
class StudentWorkProject < ActiveRecord::Base
|
||
|
# attr_accessible :title, :body
|
||
|
belongs_to :homework_common
|
||
|
belongs_to :student_work
|
||
|
belongs_to :project
|
||
|
belongs_to :user
|
||
|
end
|