summaryrefslogtreecommitdiff
path: root/migrate/__init__.py
blob: 68e8d62f91fa6bbad90a0efab801205269c625c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
"""
   SQLAlchemy migrate provides two APIs :mod:`migrate.versioning` for
   database schema version and repository management and
   :mod:`migrate.changeset` that allows to define database schema changes
   using Python.
"""

from migrate.versioning import *
from migrate.changeset import *

__version__ = '0.8.1'