2010-03-11 18:42:21 +00:00
|
|
|
module Msf
|
|
|
|
class DBManager
|
|
|
|
|
|
|
|
class Task < ActiveRecord::Base
|
|
|
|
include DBSave
|
|
|
|
|
|
|
|
belongs_to :workspace
|
2010-05-02 06:09:08 +00:00
|
|
|
|
2010-05-02 16:46:44 +00:00
|
|
|
serialize :options
|
|
|
|
serialize :result
|
2011-06-23 07:04:20 +00:00
|
|
|
serialize :settings
|
2010-03-11 18:42:21 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|