0.4.2
Released: Fri Jan 11 2013
-
[autogenerate] [bug] Fixed bug where autogenerate would fail if a Column
to be added to a table made use of the ".key" paramter.References: #99
-
[bug] [sqlite] The "implicit" constraint generated by a
type such as Boolean or Enum will not generate an
ALTER statement when run on SQlite, which does not
support ALTER for the purpose of adding/removing
constraints separate from the column def itself.
While SQLite supports adding a CHECK constraint
at the column level, SQLAlchemy would need modification
to support this.
A warning is emitted indicating this
constraint cannot be added in this scenario.References: #98
-
[bug] Added a workaround to setup.py to prevent
"NoneType" error from occuring when
"setup.py test" is run.References: #96
-
[bug] Added an append_constraint() step to each
condition within
test_autogenerate:AutogenRenderTest.test_render_fk_constraint_kwarg
if the SQLAlchemy version is less than 0.8, as ForeignKeyConstraint
does not auto-append prior to 0.8.References: #96
-
[feature] Added a README.unittests with instructions for running the test
suite fully.References: #96