mirror of https://github.com/Icinga/icinga2.git
18 lines
736 B
SQL
18 lines
736 B
SQL
-- -----------------------------------------
|
|
-- upgrade path for Icinga 2.1.0
|
|
--
|
|
-- -----------------------------------------
|
|
-- Copyright (c) 2014 Icinga Development Team (http://www.icinga.org)
|
|
--
|
|
-- Please check http://docs.icinga.org for upgrading information!
|
|
-- -----------------------------------------
|
|
|
|
ALTER TABLE `icinga_programstatus` ADD COLUMN `endpoint_name` varchar(255) character set latin1 collate latin1_general_cs default NULL;
|
|
|
|
-- -----------------------------------------
|
|
-- update dbversion
|
|
-- -----------------------------------------
|
|
|
|
INSERT INTO icinga_dbversion (name, version, create_time, modify_time) VALUES ('idoutils', '1.11.7', NOW(), NOW()) ON DUPLICATE KEY UPDATE version='1.11.7', modify_time=NOW();
|
|
|