icinga2/lib/db_ido_pgsql/schema/upgrade/2.2.0.sql

22 lines
665 B
MySQL
Raw Normal View History

-- -----------------------------------------
-- upgrade path for Icinga 2.2.0
--
-- -----------------------------------------
2019-02-25 16:30:40 +01:00
-- Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+
--
-- 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');