[sqlalchemy] How to influence tables ordering during create_all()

2010-05-11 Thread Martin Bacovsky
Hi all, I need to add support for db views in our project. I'm limited to SA 0.5 at the moment and need the views to be included during create_all/drop_all calls. I followed the recomended recipe http://www.sqlalchemy.org/trac/wiki/UsageRecipes/Views and modified it work with SA 0.5. My View

Re: [sqlalchemy] How to influence tables ordering during create_all()

2010-05-11 Thread Michael Bayer
On May 11, 2010, at 11:32 AM, Martin Bacovsky wrote: Hi all, I need to add support for db views in our project. I'm limited to SA 0.5 at the moment and need the views to be included during create_all/drop_all calls. I followed the recomended recipe

Re: [sqlalchemy] How to influence tables ordering during create_all()

2010-05-11 Thread Martin Bacovsky
On Tuesday 11 May 2010 17:43:29 Michael Bayer wrote: On May 11, 2010, at 11:32 AM, Martin Bacovsky wrote: Hi all, I need to add support for db views in our project. I'm limited to SA 0.5 at the moment and need the views to be included during create_all/drop_all calls. I followed the