diff --git a/cmd/icinga-kubernetes/main.go b/cmd/icinga-kubernetes/main.go index 6e267bf..f25569c 100644 --- a/cmd/icinga-kubernetes/main.go +++ b/cmd/icinga-kubernetes/main.go @@ -41,7 +41,7 @@ import ( "time" ) -const expectedSchemaVersion = "0.2.0" +const expectedSchemaVersion = "0.3.0" func main() { runtime.ReallyCrash = true diff --git a/schema/mysql/schema.sql b/schema/mysql/schema.sql index e59ee76..0db72c0 100644 --- a/schema/mysql/schema.sql +++ b/schema/mysql/schema.sql @@ -1034,4 +1034,4 @@ CREATE TABLE kubernetes_schema ( ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; INSERT INTO kubernetes_schema (version, timestamp, success, reason) -VALUES ('0.2.0', UNIX_TIMESTAMP() * 1000, 'y', 'Initial import'); +VALUES ('0.3.0', UNIX_TIMESTAMP() * 1000, 'y', 'Initial import');