mirror of
				https://github.com/Unleash/unleash.git
				synced 2025-10-27 11:02:16 +01:00 
			
		
		
		
	fix: Critical bugfix 'databaseSchema' not defaulting to 'public'
This commit is contained in:
		
							parent
							
								
									766932bc68
								
							
						
					
					
						commit
						e6b55cba60
					
				@ -1,5 +1,9 @@
 | 
			
		||||
# Changelog
 | 
			
		||||
 | 
			
		||||
## 3.1.7
 | 
			
		||||
 | 
			
		||||
- fix: Critical bugfix 'databaseSchema' not defaulting to 'public'
 | 
			
		||||
 | 
			
		||||
## 3.1.6
 | 
			
		||||
 | 
			
		||||
- fix: Database migrator does use the databaseSchema option.
 | 
			
		||||
 | 
			
		||||
@ -7,7 +7,7 @@ const THIRTY_DAYS = 30 * 24 * 60 * 60 * 1000;
 | 
			
		||||
 | 
			
		||||
const DEFAULT_OPTIONS = {
 | 
			
		||||
    databaseUrl: process.env.DATABASE_URL,
 | 
			
		||||
    databaseSchema: 'another',
 | 
			
		||||
    databaseSchema: 'public',
 | 
			
		||||
    port: process.env.HTTP_PORT || process.env.PORT || 4242,
 | 
			
		||||
    host: process.env.HTTP_HOST,
 | 
			
		||||
    baseUriPath: process.env.BASE_URI_PATH || '',
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user