Files
beef/lib/model/optioncache.rb
sussurro@happypacket.net 56bc17abcb 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
2011-04-04 19:38:01 +00:00

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