I made several changes to database model, the problem is that SQLITE does not support ALTER TABLE so you need to delete your tables and let them to be created again.
You can just delete config* from databases folder, but I has problems with birthdate column in auth_user, so it is a good idea to start again from the scratch. The easiest way is: *- git clone git://github.com/mdipierro/web2py.git web2py - cd web2py/applications - git clone git://github.com/rochacbruno/Movuca.git demo - cd .. - python web2py.py -a "yourdesiredpassword" - Go to brower and: - http://localhost:8000/demo/setup/install - then - http://localhost:8000/demo * I implemented Facebook login, Google Connect login, Now users e-mail is using MailHide API from Recaptcha, User avatar can be taken from facebook, twitter, gravatar. I am working on posts via e-mail, privacy options, groups, pages and notifications, after that I think I will release the beta version.

