Skip to content

Commit

Permalink
Change schema version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jhoxhaa committed Dec 18, 2024
1 parent 3044b9a commit 81a8bd3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/icinga-kubernetes/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ import (
"time"
)

const expectedSchemaVersion = "0.2.0"
const expectedSchemaVersion = "0.3.0"

func main() {
runtime.ReallyCrash = true
Expand Down
2 changes: 1 addition & 1 deletion schema/mysql/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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');

0 comments on commit 81a8bd3

Please sign in to comment.