view rhodecode/lib/dbmigrate/migrate/__init__.py @ 4186:7e5f8c12a3fc kallithea-2.2.5-rebrand

First step in two-part process to rename directories to kallithea. This first step is to change all references in the files where they refer to the old directory name.
author Bradley M. Kuhn <bkuhn@sfconservancy.org>
date Wed, 02 Jul 2014 19:04:28 -0400
parents cf51bbfb120e
children
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 kallithea.lib.dbmigrate.migrate.versioning import *
from kallithea.lib.dbmigrate.migrate.changeset import *

__version__ = '0.7.3.dev'