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