8 lines
164 B
Ruby
8 lines
164 B
Ruby
|
|
class DealProcess < ActiveRecord::Base
|
||
|
|
unloadable
|
||
|
|
|
||
|
|
belongs_to :author, :class_name => "User", :foreign_key => "author_id"
|
||
|
|
belongs_to :deal
|
||
|
|
|
||
|
|
end
|