8 lines
172 B
Ruby
8 lines
172 B
Ruby
|
|
class ContractProcess < ActiveRecord::Base
|
||
|
|
unloadable
|
||
|
|
|
||
|
|
belongs_to :author, :class_name => "User", :foreign_key => "author_id"
|
||
|
|
belongs_to :contract
|
||
|
|
|
||
|
|
end
|