Hi Anthony,

yes, migrate is set for fields in the  aut table.

Also another note, shuffle did not work for me I have to, from random
import sample.
then change
DAL(sample(['mysql connection string','mysql connection
string'],1),migrate_enabled=False)

Regards,

Nils

On Fri, Jul 22, 2011 at 4:02 PM, Anthony <[email protected]> wrote:
> 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