summaryrefslogtreecommitdiff
path: root/vendor/plugins/thinking-sphinx/features/support/models/box.rb
blob: bd948c4f1c0ef63582a10a6732988d66373ac1da (plain)
1
2
3
4
5
6
7
8
class Box < ActiveRecord::Base
  define_index do
    indexes width, :as => :width_field
    
    has width, length, depth
    has [width, length, depth], :as => :dimensions
  end
end