mirror of
				https://github.com/Unleash/unleash.git
				synced 2025-10-27 11:02:16 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			443 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			443 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict';
 | |
| 
 | |
| const DBMigrate = require('db-migrate');
 | |
| const path = require('path');
 | |
| const parseDbUrl = require('parse-database-url');
 | |
| 
 | |
| function migrateDb (dbUrl, schema = "public") {
 | |
|     const custom = parseDbUrl(dbUrl);
 | |
|     custom.schema = schema;
 | |
|     const dbmigrate = DBMigrate.getInstance(true, {
 | |
|         cwd: __dirname,
 | |
|         config: { custom },
 | |
|         env: 'custom' }
 | |
|     );
 | |
|     return dbmigrate.up();
 | |
| }
 | |
| 
 | |
| module.exports = migrateDb; |