Re: [sqlalchemy] alembic.op.create_index algorithm=inplace lock=none

2015-09-10 Thread murray . wasley
thanks Michael, exactly the path I took ... cheers On Tuesday, September 8, 2015 at 12:04:58 PM UTC-4, Michael Bayer wrote: > > > > On 9/8/15 9:32 AM, murray...@lightspeedretail.com wrote: > > Hi there, > > Is there any way I can set additional params on alembic.op.create_index. > We are using

[sqlalchemy] alembic.op.create_index algorithm=inplace lock=none

2015-09-08 Thread murray . wasley
Hi there, Is there any way I can set additional params on alembic.op.create_index. We are using python and MYSQL. Need to add : algorithm=inplace lock=none trying to produce: CREATE INDEX [index_name] ON [table_name] ([index_fields])* algorithm**=inplace lock=**none*; NOTE: I have tried pas