ido-mysql: Add yet empty v2.6.0 schema upgrade script

refs #10502
This commit is contained in:
Eric Lippmann 2016-11-17 12:08:38 +01:00 committed by Michael Friedrich
parent 4ae98c50ab
commit 8a21b4af2f
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
-- -----------------------------------------
-- upgrade path for Icinga 2.6.0
--
-- -----------------------------------------
-- Copyright (c) 2016 Icinga Development Team (http://www.icinga.org)
--
-- Please check http://docs.icinga.org for upgrading information!
-- -----------------------------------------
-- -----------------------------------------
-- set dbversion
-- -----------------------------------------
INSERT INTO icinga_dbversion (name, version, create_time, modify_time) VALUES ('idoutils', '1.14.2', NOW(), NOW())
ON DUPLICATE KEY UPDATE version='1.14.2', modify_time=NOW();