Displaying 1 result from an estimated 1 matches for "string_field".
2006 Feb 28
2
FerretOnRails
...pplication, with multiple models:
Speakers
Talks
News
etc..
With all varying :string and :text column types, to be able to use a single
index by which I can produce a search on.
I will go through each of the models and add a acts_as_ferret :fields =>
[''text_field'', ''string_field'', ''etc''] for each of the models so they are
indexed. But as far as storing the data in a way so that I can query it with
a single action like ActiveRecord::find_by_content(''search query test''),
would work great. I even seen a reference to the previous po...