Files @ d162de13caec
Branch filter:

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

Marcin Kuzminski
memory optimizations, call diffs only when needed ie. after checking for binary, and cutoff limit.
reduces memory consumption a lot on binary files ! Additionally checking for binary before the size gives little more performance as well
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 *