Files @ 88e750527c7c
Branch filter:

Location: kallithea/rhodecode/lib/dbmigrate/migrate/__init__.py

Marcin Kuzminski
small rewrite for injecting rhodecode_extras into ui. instead of injecting to hgweb instance, inject to ui and pass to hgweb. It's simpler and more readable.
1
2
3
4
5
6
7
8
9
"""
   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 *