On Sun, 2006-01-22 at 06:50 -0800, mte wrote:
> hi,
> i've tried to go through turbotunes tutorial with current svn version
> (revision 553) and the server won't even start. The problem begins when
> I add (or uncomment, if this is commented, evertything else works) this
> statement into controllers.py:
> catwalk = CatWalk(model)

Try creating the catwalk tables manually.  I have this problem
consistently with PostgreSQL (and had assumed it was a
PostgreSQL-specific issue):

create table catwalk_state_table ( 
    id serial primary key not null, 
    state bytea 
);


Regards,
Cliff

Reply via email to