mirror of
https://github.com/beefproject/beef
synced 2026-06-08 13:15:56 +00:00
ffa735caff
git-svn-id: https://beef.googlecode.com/svn/trunk@503 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
17 lines
254 B
Ruby
17 lines
254 B
Ruby
module BeEF
|
|
module Models
|
|
|
|
class Plugin
|
|
|
|
include DataMapper::Resource
|
|
|
|
storage_names[:default] = 'plugins'
|
|
|
|
property :id, Serial
|
|
property :data, Text, :lazy => false
|
|
property :path, Text, :lazy => false
|
|
|
|
end
|
|
|
|
end
|
|
end |