Files @ 7727faad5baf
Branch filter:

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

Marcin Kuzminski
fixed issue #671 commenting on pull requests sometimes used old JSON encoder and broke. This changeset replaces it's with RhodeCode json encoder to ensure all data is properly serializable
"""
   This module contains database dialect specific changeset
   implementations.
"""
__all__ = [
    'postgres',
    'sqlite',
    'mysql',
    'oracle',
]