]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commit
- Added a workaround for SQLAlchemy issue #3023 (fixed in 0.9.5) where
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 2 Nov 2014 17:35:47 +0000 (12:35 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 2 Nov 2014 17:35:47 +0000 (12:35 -0500)
commit92184a55cac2c0fa04396df4b2d4d9694e97f43f
treefa0f5a7404baa447236b6c74e98272b9bfc861c2
parentb16bdf8789cc3f16fd6a5a94288ba204646bbc23
- Added a workaround for SQLAlchemy issue #3023 (fixed in 0.9.5) where
a column that's part of an explicit PrimaryKeyConstraint would not
have its "nullable" flag set to False, thus producing a false
autogenerate.  Also added a related correction to MySQL which will
correct for MySQL's implicit server default of '0' when a NULL integer
column is turned into a primary key column. fixes #199
alembic/autogenerate/compare.py
alembic/ddl/mysql.py
docs/build/changelog.rst
tests/test_autogenerate.py