metasploit-framework/lib/msf/core/model/ref.rb

10 lines
147 B
Ruby

module Msf
class DBManager
class Ref < ActiveRecord::Base
include DBSave
has_and_belongs_to_many :vulns, :join_table => :vulns_refs
end
end
end