git-svn-id: https://beef.googlecode.com/svn/trunk@852 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
18 lines
214 B
Ruby
18 lines
214 B
Ruby
module BeEF
|
|
module Models
|
|
|
|
class OptionCache
|
|
|
|
include DataMapper::Resource
|
|
|
|
storage_names[:default] = 'option_cache'
|
|
|
|
property :id, Serial
|
|
property :name, Text
|
|
property :value, Text
|
|
|
|
end
|
|
|
|
end
|
|
end
|