Add yet empty MySQL schema upgrade to IDO version 1.14.0

refs #9027
This commit is contained in:
Eric Lippmann 2015-04-09 10:30:20 +02:00 committed by Michael Friedrich
parent fe3eba801a
commit 1e0df43127
1 changed files with 14 additions and 0 deletions

View File

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