Skip to content

Commit

Permalink
Merge pull request #156 from Icinga/fix-schema
Browse files Browse the repository at this point in the history
Fix schema for events
  • Loading branch information
lippserd authored Jan 3, 2025
2 parents 04da96b + f0d6a27 commit c6ddf30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion schema/mysql/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ CREATE TABLE event (
reason varchar(128) NOT NULL,
note text NOT NULL,
type varchar(255) NOT NULL,
reference_kind varchar(255) NOT NULL,
reference_kind varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
reference_namespace varchar(255) NULL DEFAULT NULL,
reference_name varchar(253) NOT NULL,
first_seen bigint unsigned NOT NULL,
Expand Down

0 comments on commit c6ddf30

Please sign in to comment.