Ha, I figured it out. I spent most of yesterday, and this morning on this, and it was simple (usually is). I had my "is_indexed" defined in the wrong model. It had to be defined in my name model rather than my account model. It seems a little backwards in my head, but it works now.
On Apr 22, 9:24 am, internetchris <[email protected]> wrote: > Hey Everyone, > > So I posted a thread last night with my problem, but since then I have > figured out the syntax a little better. I am trying to create indexes > on 2 separate models. I have an Account model that "has_many :names" > > class Account < ActiveRecord::Base > > has_many :names, :dependent => :destroy > > is_indexed :fields => ['s_property_no'], > :include => [{:association_name => "name", :field => 'name', :as > => 'property_name'}] > > How do I setup the association between the account and name? When I > do rake ultrasphinx:configure, I get an error that says " You have a > nil object when you didn't expect it! The error occured while > evaluation nil.constantize. For some reason it's not seeing my "name" > model. > > Here's the name model... > > class Name < ActiveRecord::Base > belongs_to :account > > Any help is appreciated. > > Thanks! > > Chris --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

