git-svn-id: https://beef.googlecode.com/svn/trunk@633 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
22 lines
304 B
Ruby
22 lines
304 B
Ruby
module BeEF
|
|
module Models
|
|
|
|
class CommandModule
|
|
|
|
include DataMapper::Resource
|
|
|
|
storage_names[:default] = 'command_modules'
|
|
|
|
property :id, Serial
|
|
property :path, Text, :lazy => false
|
|
property :name, Text, :lazy => false
|
|
|
|
has n, :commands
|
|
has 1, :dynamic_command_info
|
|
|
|
|
|
end
|
|
|
|
end
|
|
end
|