11 lines
141 B
Python
11 lines
141 B
Python
"""
|
|
This module contains database dialect specific changeset
|
|
implementations.
|
|
"""
|
|
__all__=[
|
|
'postgres',
|
|
'sqlite',
|
|
'mysql',
|
|
'oracle',
|
|
]
|