11 lines
150 B
Ruby
11 lines
150 B
Ruby
|
module Msf
|
||
|
class DBManager
|
||
|
|
||
|
class Service < ActiveRecord::Base
|
||
|
include DBSave
|
||
|
has_many :vulns, :dependent => :destroy
|
||
|
belongs_to :host
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|