mirror of
				https://github.com/Icinga/icinga2.git
				synced 2025-10-31 03:03:52 +01:00 
			
		
		
		
	Leave out tests and third party tools, and license strings fixes #5151 Signed-off-by: Michael Friedrich <michael.friedrich@icinga.com>
		
			
				
	
	
		
			22 lines
		
	
	
		
			692 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			692 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
| -- -----------------------------------------
 | |
| -- upgrade path for Icinga 2.2.0
 | |
| --
 | |
| -- -----------------------------------------
 | |
| -- Copyright (c) 2014 Icinga Development Team (https://www.icinga.com)
 | |
| --
 | |
| -- Please check https://docs.icinga.com for upgrading information!
 | |
| -- -----------------------------------------
 | |
| 
 | |
| ALTER TABLE icinga_programstatus ADD COLUMN program_version TEXT default NULL;
 | |
| 
 | |
| ALTER TABLE icinga_customvariables ADD COLUMN is_json INTEGER default 0;
 | |
| ALTER TABLE icinga_customvariablestatus ADD COLUMN is_json INTEGER default 0;
 | |
| 
 | |
| 
 | |
| -- -----------------------------------------
 | |
| -- update dbversion
 | |
| -- -----------------------------------------
 | |
| 
 | |
| SELECT updatedbversion('1.12.0');
 | |
| 
 |