From: Eric Lippmann Date: Thu, 9 Apr 2015 08:30:20 +0000 (+0200) Subject: Add yet empty MySQL schema upgrade to IDO version 1.14.0 X-Git-Tag: v2.4.0~671 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1e0df4312769704d5225f0d682644e2787352eb8;p=icinga2 Add yet empty MySQL schema upgrade to IDO version 1.14.0 refs #9027 --- diff --git a/lib/db_ido_mysql/schema/upgrade/2.4.0.sql b/lib/db_ido_mysql/schema/upgrade/2.4.0.sql new file mode 100644 index 000000000..7ebdedc67 --- /dev/null +++ b/lib/db_ido_mysql/schema/upgrade/2.4.0.sql @@ -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();