[web2py] Re: column auth_user.registration_id does not exist ERROR AFTER UPGRADE to 1.99

2012-05-28 Thread Paul Gerrard
I just had the same problem on a test version of my apps. I'm using MYSQL. The field is missing and it isn't being autocreated because Migrations=False in my db.py model, I have auth.define_tables(migrate=False) Using fake_migrate True and then trying to migrate to reset doesn't work either.

[web2py] Re: column auth_user.registration_id does not exist ERROR AFTER UPGRADE to 1.99

2012-05-28 Thread Massimo Di Pierro
The error is this: ProgrammingError: column auth_user.registration_id does not exist To create a missing field you want migrate=True but not fake_migrate=True. On Monday, 28 May 2012 04:54:16 UTC-5, Paul Gerrard wrote: I just had the same problem on a test version of my apps. I'm using

[web2py] Re: column auth_user.registration_id does not exist ERROR AFTER UPGRADE to 1.99

2012-01-08 Thread Massimo Di Pierro
Not sure how you got into that state. Looks like your web2py table sturcture is not in sync with the db. Which db are you using? If you send me your models and your databases/*.table files I can fix them for you. On Jan 8, 3:51 pm, david.waldrop david.wald...@gmail.com wrote: I upgraded form

[web2py] Re: column auth_user.registration_id does not exist ERROR AFTER UPGRADE to 1.99

2012-01-07 Thread Alan Etkin
Seems like a bug. Could you post the error traceback? It happens with every application in the web2py installation? On Jan 7, 11:21 am, david.waldrop david.wald...@gmail.com wrote: after an upgrade to 1.99 i get an error stating as in the subject above when trying to login.  I tried to use the

[web2py] Re: column auth_user.registration_id does not exist ERROR AFTER UPGRADE to 1.99

2012-01-07 Thread Massimo Di Pierro
What did you upgrade from? Are migrations on? It is possible you upgraded from an old web2py and it needs to create the auth_user.registration_id which was added about 1 year ago. On Jan 7, 8:21 am, david.waldrop david.wald...@gmail.com wrote: after an upgrade to 1.99 i get an error stating as