Skip to content

Instantly share code, notes, and snippets.

@jaigouk
Created January 12, 2009 02:55
Show Gist options
  • Save jaigouk/45862 to your computer and use it in GitHub Desktop.
Save jaigouk/45862 to your computer and use it in GitHub Desktop.
class Tweet
include DataMapper::SphinxResource
property :id, Serial
property :message, Text, :length => 255, :nullable => false
property :name, String, :length => 20
property :category, String, :length => 20
property :link, String
property :date, String
property :created_at, DateTime
property :updated_on, DateTime
is :searchable
repository(:search) do
properties(:search).clear
property :message, Text
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment