As per Ian answer to another post :
QUOTED
I managed to solve this by specifiying user_id and role_id as primary
keys for the RolesUser controller since there is no id column for the
roles_user table.
First, you need to install the compositekeys gem (http://
compositekeys.rubyforge.org/). After that, add this to roles_user.rb:
set_primary_keys :user_id, :role_id
Then it should be working.
END QUOTE
Yes , it's working.. is it a bug in the plugin ? why isn't already
included in the core dev ?