11 lines
110 B
Ruby
11 lines
110 B
Ruby
|
module Msf
|
||
|
class DBManager
|
||
|
|
||
|
class Cred < ActiveRecord::Base
|
||
|
include DBSave
|
||
|
belongs_to :service
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|