You've already forked nginx-proxy-manager
							
							
				mirror of
				https://github.com/NginxProxyManager/nginx-proxy-manager.git
				synced 2025-11-02 16:53:15 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			341 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			341 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
module.exports = {
 | 
						|
	development: {
 | 
						|
		client:     'mysql2',
 | 
						|
		migrations: {
 | 
						|
			tableName: 'migrations',
 | 
						|
			stub:      'lib/migrate_template.js',
 | 
						|
			directory: 'migrations'
 | 
						|
		}
 | 
						|
	},
 | 
						|
 | 
						|
	production: {
 | 
						|
		client:     'mysql2',
 | 
						|
		migrations: {
 | 
						|
			tableName: 'migrations',
 | 
						|
			stub:      'lib/migrate_template.js',
 | 
						|
			directory: 'migrations'
 | 
						|
		}
 | 
						|
	}
 | 
						|
};
 |