Hey,
Problem is as follows.
I start a clean db in psql. Test the connection + delete all the /databases
files to fresh with remote db.
When I launch index page tables start getting created then I get error
regarding some table is missing. I check sql.log and it did not even start
creating the table (this + a few more get ommited).
I have check_reserved in my DAL declaration. Table is not ill named:
db.define_table('delivery_type',
Field('name','string'),
Field('price','double'),
format=lambda r: r.name
)
but there are others not getting created
version 1.99.7
--