Hi,
My working solution was to define table's names myself.
Here is the diff output:
10c10,12
< has_and_belongs_to_many('groups', of_kind='Group',
inverse='members')
---
> has_and_belongs_to_many('groups', of_kind='Group', inverse='members',
> tablename='security_users_groups')
>
> using_options(tablename = 'security_users')
37,38c39,42
< has_and_belongs_to_many('members', of_kind='User',
inverse='groups')
< has_and_belongs_to_many('permissions', of_kind='Permission',
inverse='groups')
---
> has_and_belongs_to_many('members', of_kind='User', inverse='groups',
> tablename='security_users_groups')
> has_and_belongs_to_many('permissions', of_kind='Permission',
> inverse='groups', tablename='security_groups_permissions')
>
> using_options(tablename = 'security_groups')
43c47
< has_and_belongs_to_many('groups', of_kind='Group',
inverse='permissions')
---
> has_and_belongs_to_many('groups', of_kind='Group', inverse='permissions',
> tablename='security_groups_permissions')
44a49
> using_options(tablename = 'security_permissions')
Cheers,
Jose F.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"pylons-discuss" 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/pylons-discuss?hl=en
-~----------~----~----~----~------~----~------~--~---