Sha256: 2ae1434dc9909f36a133ac6bb960d0f950d41e40fb9088da1bdd392e333fa041
Contents?: true
Size: 647 Bytes
Versions: 6
Compression:
Stored size: 647 Bytes
Contents
class Item include DataMapper::Resource include DataMapper::SphinxResource property :id, Serial property :t_string, String property :t_text, Text, :lazy => false property :t_decimal, BigDecimal property :t_float, Float property :t_integer, Integer property :t_datetime, DateTime repository(:search) do properties(:search).clear property :id, Serial property :t_string, String attribute :t_text, Text, :lazy => false attribute :t_decimal, BigDecimal attribute :t_float, Float attribute :t_integer, Integer attribute :t_datetime, DateTime end end # Item
Version data entries
6 entries across 6 versions & 3 rubygems