view rhodecode/lib/dbmigrate/migrate/__init__.py @ 3309:b3cf4539d1bd beta

Added missing migrations, and move update_repoinfo to RepoModel migrations now update repo cache
author Marcin Kuzminski <marcin@python-works.com>
date Sun, 03 Feb 2013 21:03:40 +0100
parents cf51bbfb120e
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'