On 2010-06-14 13:18, annet wrote:
is a solution which allows me to keep the tables in the PostgreSQL database.
,migrate=False : at the end of your model...
Ex.:
db.define_table('atable',
SQLField('var1'),
SQLField('var2'),migrate=False)
modify your table in postgres and define the model in the exact same way
in web2py...
Jonhy

