using tesla_auth: table name too long?

2007-08-10 Thread Evert Rol
Hi, I've been trying out tesla, specifically tesla_auth, by following the 'getting started' on the tesla wiki. When I get to the 'paster create_sql development.ini' section, paste falls over with the following error: " An unknown error occurred. (ProgrammingError) relation "example_mod

Re: using tesla_auth: table name too long?

2007-08-11 Thread Jose Figueras
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') > >