From 634d9e07b6ea01ea1fef096a11e5479e33ce5224 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Fri, 22 Jul 2016 18:10:49 +0200 Subject: [PATCH] schema: raise schema versions for new installations Forgot to commit & push migration 99, sorry :p --- schema/mysql.sql | 2 +- schema/pgsql.sql | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/schema/mysql.sql b/schema/mysql.sql index 7114a0e4..c6ec60f1 100644 --- a/schema/mysql.sql +++ b/schema/mysql.sql @@ -1310,4 +1310,4 @@ CREATE TABLE sync_run ( INSERT INTO director_schema_migration SET migration_time = NOW(), - schema_version = 97; + schema_version = 100; diff --git a/schema/pgsql.sql b/schema/pgsql.sql index 4abc50ab..25693867 100644 --- a/schema/pgsql.sql +++ b/schema/pgsql.sql @@ -1530,4 +1530,4 @@ CREATE UNIQUE INDEX notification_inheritance ON icinga_notification_inheritance INSERT INTO director_schema_migration (schema_version, migration_time) - VALUES (98, NOW()); + VALUES (100, NOW());