summaryrefslogtreecommitdiff
path: root/alembic/__init__.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-05-01 11:19:54 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2012-05-01 11:19:54 -0400
commit494ac8d84a4e827fcf7dc117b84ba76f442d60a2 (patch)
tree57b5ae7a873ea5eab423aa0642dff3aa1c9d9f1b /alembic/__init__.py
parent7835a323a7e41558989afcb2eeaa73b968dd9e34 (diff)
downloadalembic-494ac8d84a4e827fcf7dc117b84ba76f442d60a2.tar.gz
- [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
Diffstat (limited to 'alembic/__init__.py')
-rw-r--r--alembic/__init__.py2
1 files changed, 1 insertions, 1 deletions
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__))