mirror of
				https://github.com/NginxProxyManager/nginx-proxy-manager.git
				synced 2025-10-30 23:33:34 +00: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'
 | |
| 		}
 | |
| 	}
 | |
| };
 |