On Tuesday, November 1, 2011 12:46:30 PM UTC-4, Omi Chiba wrote: > > Richard, > > Thanks for your reply. Yep, I set the migrate=False at DAL level so > that I don't have to specify each table. >
To prevent migrations globally, use DAL(..., migrate_enabled=False). DAL(..., migrate=False) simply sets the default value of migrate to False for individual tables that do not explicitly set the migrate argument. If you have a table that explicitly sets db.define_table(..., migrate=True), it will still do a migration, unless DAL(..., migrate_enabled=False). Anthony

