I have a "jobs" model in my RoR project and i need the controller to access a table other than "jobs" in the database.
Calling: @var = Job.find(:all) is not problem, but calling
@var = TableB.find(:all)
gets "undefined local variable or method `tableB'" for JobsController:Class
Any ideas? Thanks!