Hey lists - Alembic 0.3.6 is released.
Alembic is the database migrations tool for SQLAlchemy. Alembic includes features such as minimalist scripting syntax, autogeneration of migrations, support for "offline" migrations, and an open-ended architecture that's easily embedded in many scenarios. The latest download for Alembic is available on the cheese shop at: http://pypi.python.org/pypi/alembic/ Changelog for 0.3.6: 0.3.6 ===== - [feature] Added include_symbol option to EnvironmentContext.configure(), specifies a callable which will include/exclude tables in their entirety from the autogeneration process based on name. #27 - [feature] Added year, month, day, hour, minute, second variables to file_template. #59 - [feature] Added 'primary' to the list of constraint types recognized for MySQL drop_constraint(). - [feature] Added --sql argument to the "revision" command, for the use case where the "revision_environment" config option is being used but SQL access isn't desired. - [bug] Repaired create_foreign_key() for self-referential foreign keys, which weren't working at all. - [bug] 'alembic' command reports an informative error message when the configuration is missing the 'script_directory' key. #63 - [bug] Fixes made to the constraints created/dropped alongside so-called "schema" types such as Boolean and Enum. The create/drop constraint logic does not kick in when using a dialect that doesn't use constraints for these types, such as postgresql, even when existing_type is specified to alter_column(). Additionally, the constraints are not affected if existing_type is passed but type_ is not, i.e. there's no net change in type. #62 - [bug] Improved error message when specifiying non-ordered revision identifiers to cover the case when the "higher" rev is None, improved message overall. #66 -- You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sqlalchemy?hl=en.
