Files @ 8d0858376163
Branch filter:

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

Marcin Kuzminski
fixed problem with rawfile content_disposition attachment,
webob assumes that file is encoded with iso, and we use utf8 in rhodecode
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 *