mirror of
				https://github.com/Unleash/unleash.git
				synced 2025-10-27 11:02:16 +01:00 
			
		
		
		
	This patch will fix issues introduced in Unleash v3.13.0. It only affects users trying to upgrade from v3 to v4 and has been using v3.13.0 which contained an incorrect migration file.
		
			
				
	
	
		
			10 lines
		
	
	
		
			178 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			178 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict';
 | |
| 
 | |
| exports.up = function (db, cb) {
 | |
|     db.runSql('ALTER TABLE roles ADD COLUMN IF NOT EXISTS project text', cb);
 | |
| };
 | |
| 
 | |
| exports.down = function (db, cb) {
 | |
|     cb();
 | |
| };
 |