2009-12-14 22:52:34 +00:00
|
|
|
module Msf
|
|
|
|
class DBManager
|
|
|
|
|
|
|
|
class Note < ActiveRecord::Base
|
|
|
|
include DBSave
|
2009-12-29 23:48:45 +00:00
|
|
|
|
|
|
|
belongs_to :workspace
|
2009-12-14 22:52:34 +00:00
|
|
|
belongs_to :host
|
2009-12-29 23:48:45 +00:00
|
|
|
belongs_to :service
|
2010-05-02 16:46:44 +00:00
|
|
|
serialize :data
|
2009-12-14 22:52:34 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2009-12-29 23:48:45 +00:00
|
|
|
end
|
2010-05-02 06:09:08 +00:00
|
|
|
|