Schema context for join table

Howdy.

I was having trouble with a join table for a many-many relationship and decided to ask the question. The problem is I’m trying to get Yii to recognize the schema context of the join table, but haven’t had much success.

Error reads:

The relation "transactions" in active record class "Item" is not specified correctly: the join table "itemtransaction" given in the foreign key cannot be found in the database.

I am using Postgresql, and have in my config an appropriate setting for ‘params’=> ‘pgSearchPath’=> …

If I plop the join table in the public schema, things work fine. Is the little join table allowed to live in another schema? If yes, how do I let Yii know what that is?

Thanks for any info…