From 494ac8d84a4e827fcf7dc117b84ba76f442d60a2 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Tue, 1 May 2012 11:19:54 -0400 Subject: - [bug] Added "type" argument to op.drop_constraint(), and implemented full constraint drop support for MySQL. CHECK and undefined raise an error. MySQL needs the constraint type in order to emit a DROP CONSTRAINT. #44 --- alembic/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'alembic/__init__.py') diff --git a/alembic/__init__.py b/alembic/__init__.py index 259782c..d75fb22 100644 --- a/alembic/__init__.py +++ b/alembic/__init__.py @@ -1,6 +1,6 @@ from os import path -__version__ = '0.3.2' +__version__ = '0.3.3' package_dir = path.abspath(path.dirname(__file__)) -- cgit v1.2.1