On Friday, July 22, 2011 10:12:01 AM UTC-4, nils wrote: 
>
> Hi Anthony, 
>
> That worked, maybe the docs should be updated.
>
Indeed.

> I did try migrate=False, thought they were both the same thing.
>
migrate=False (as an argument to DAL) doesn't turn off migrations -- it 
merely determines the default value of migrate for define_table() when it is 
not explicitly specified. So, DAL(..., migrate=False) should have the same 
effect as DAL(..., migrate_enabled=False) as long as none of your 
db.define_table() calls explicilty sets their 'migrate' argument. Do you 
have an explicit migrate=True in at least one of your db.define_table() 
calls?
 
Anthony
 

Reply via email to