Forgot this.. *sigh*, adding for option caching to fix revision 851

git-svn-id: https://beef.googlecode.com/svn/trunk@852 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
This commit is contained in:
sussurro@happypacket.net
2011-04-04 19:38:01 +00:00
parent a8c70e0e5f
commit 56bc17abcb

17
lib/model/optioncache.rb Normal file
View File

@@ -0,0 +1,17 @@
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