Files
metasploit-gs/lib/msf/core/model/note.rb
T
HD Moore 39a06a88c3 Patch ActiveRecord to use marshal instead of yaml for serialization
git-svn-id: file:///home/svn/framework3/trunk@9198 4d416f70-5f16-0410-b530-b9f4589650da
2010-05-02 16:46:44 +00:00

16 lines
170 B
Ruby

module Msf
class DBManager
class Note < ActiveRecord::Base
include DBSave
belongs_to :workspace
belongs_to :host
belongs_to :service
serialize :data
end
end
end