Re: [web2py] upgrade 1.79.1 caused my my app failed on auth_user table already exist

2010-06-07 Thread Praneeth
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The problem seems to be that the .table contents of the databases dir are gone and the welcome app is trying to recreate them - but it finds that the default sqlite db already has the databases defined in your code. Setting migrate = False might fix yo

[web2py] upgrade 1.79.1 caused my my app failed on auth_user table already exist

2010-06-07 Thread dlin
My upgrade method is just unzip all source to my exist web2py directory. I've compare the new welcome source with my application. I found in welcome/db.py auth.settings.hmac_key='' Is that the problem? If I want to solve this problem, I should drop all my tables by sqlite3 directly. What's the