Skip to content

Commit

Permalink
Add hana support.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelkuty committed Jan 27, 2017
1 parent 2f675a4 commit 80427ef
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion alembic/ddl/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from . import postgresql, mysql, sqlite, mssql, oracle # pragma: no cover
from . import postgresql, mysql, sqlite, mssql, oracle, hana # pragma: no cover
from .impl import DefaultImpl # pragma: no cover
8 changes: 8 additions & 0 deletions alembic/ddl/hana.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

from .impl import DefaultImpl


class HanaImpl(DefaultImpl):

__dialect__ = 'hana'
transactional_ddl = True

0 comments on commit 80427ef

Please sign in to comment.