so all autogenerates were spitting out batch mode...this has been
fixed so that batch mode again is only when selected in env.py.
opts['include_symbol'] = include_symbol
opts['include_object'] = include_object
opts['include_schemas'] = include_schemas
- opts['render_as_batch'] = True #render_as_batch
+ opts['render_as_batch'] = render_as_batch
opts['upgrade_token'] = upgrade_token
opts['downgrade_token'] = downgrade_token
opts['sqlalchemy_module_prefix'] = sqlalchemy_module_prefix
.. changelog::
:version: 0.7.1
+ .. change::
+ :tags: bug, batch
+
+ The ``render_as_batch`` flag was inadvertently hardcoded to ``True``,
+ so all autogenerates were spitting out batch mode...this has been
+ fixed so that batch mode again is only when selected in env.py.
+
.. change::
:tags: feature, autogenerate
:tickets: 178