0.8.5
0.8.5
Released: March 9, 2016
-
[autogenerate] [bug] Fixed bug where the columns rendered in a
PrimaryKeyConstraint
in autogenerate would inappropriately render the "key" of the
column, not the name. Pull request courtesy Jesse Dhillon.References: #335
-
[batch] [bug] Repaired batch migration support for "schema" types which generate
constraints, in particular theBoolean
datatype which generates
a CHECK constraint. Previously, an alter column operation with this
type would fail to correctly accommodate for the CHECK constraint
on change both from and to this type. In the former case the operation
would fail entirely, in the latter, the CHECK constraint would
not get generated. Both of these issues are repaired.References: #354
-
[bug] [mysql] Changing a schema type such as
Boolean
to a non-schema type would
emit a drop constraint operation which emitsNotImplementedError
for
the MySQL dialect. This drop constraint operation is now skipped when
the constraint originates from a schema type.References: #355