On Thursday, February 24, 2011 5:18:05 PM UTC-5, Eduardo wrote: > > Alright, clarifying the question: I understand I can edit db.py and > add the sqlite file form there; my question is: will an already > populated db be affected (reset) when I define the table with > db.define_table()?
See this: http://web2py.com/book/default/chapter/06#Legacy-Databases-and-Keyed-Tables As it says, set migrate=False. It shouldn't affect any existing data in the database (of course, always a good idea to have a backup in case of disaster). Anthony

