:class => :teste is giving error Unknown key(s): class, It should be :class_name => :teste only. I'm sure.
My Two models are teste.rb , schoolclass.rb i) class Teste < ActiveRecord::Base set_table_name "tests" has_and_belongs_to_many :schoolclasses, :join_table => :test_schoolclasses, :order=>'schoolclasses.standard, ASCII(division) asc' end ii) class Schoolclass < ActiveRecord::Base has_and_belongs_to_many :students, :join_table => :student_schoolclasses has_and_belongs_to_many :tests, :class_name => :teste, :join_table => :test_schoolclasses end What's the problem here? -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk@googlegroups.com To unsubscribe from this group, send email to rubyonrails-talk+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---