]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commit
Added new kw argument to :meth:`.EnvironmentContext.configure`
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 11 Jul 2013 23:07:14 +0000 (19:07 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 11 Jul 2013 23:07:14 +0000 (19:07 -0400)
commit949367b87972ad2fba7653e9bfd624b7a629c04e
tree183bf743c14a5c0989d1fef030ef123a34cf597c
parenta381c8fab4b8066ffc656da9bfe6bf802099d955
Added new kw argument to :meth:`.EnvironmentContext.configure`
``include_object``.  This is a more flexible version of the
``include_symbol`` argument which allows filtering of columns as well as tables
from the autogenerate process,
and in the future will also work for types, constraints and
other constructs.  The fully constructed schema object is passed,
including its name and type as well as a flag indicating if the object
is from the local application metadata or is reflected.
alembic/autogenerate.py
alembic/ddl/impl.py
alembic/ddl/postgresql.py
alembic/environment.py
alembic/migration.py
docs/build/changelog.rst
tests/test_autogenerate.py
tests/test_postgresql.py