view rhodecode/lib/dbmigrate/migrate/__init__.py @ 1818:cf51bbfb120e beta

auto white-space removal
author Marcin Kuzminski <marcin@python-works.com>
date Thu, 29 Dec 2011 07:35:51 +0200
parents 5b2cf21b1947
children 7e5f8c12a3fc
line wrap: on
line source

"""
   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 rhodecode.lib.dbmigrate.migrate.versioning import *
from rhodecode.lib.dbmigrate.migrate.changeset import *

__version__ = '0.7.3.dev'