10 lines
106 B
Ruby
10 lines
106 B
Ruby
|
module Msf
|
||
|
class DBManager
|
||
|
|
||
|
class Note < ActiveRecord::Base
|
||
|
include DBSave
|
||
|
belongs_to :host
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|