On Sunday, February 27, 2011 7:53:39 PM UTC-5, darkblue_b wrote: > > migrate=migrate) ##<- I dont know what this does yet --
'migrate' tells web2py whether to run automatic migrations of the database table when your web2py model changes. See http://web2py.com/book/default/chapter/06#Migrations for details. By default, migrate=True. In the above code, migrate=migrate, so I assume the variable 'migrate' is defined earlier to be either True or False (usually you want it True in development but False on production). I think some people define it programmatically by figuring out whether the current environment is the development or production environment. Anthony

