Skip to content

Commit

Permalink
Merge pull request #147 from Icinga/fix-annotation-name-length
Browse files Browse the repository at this point in the history
Fix schema: length of column name of annotation
  • Loading branch information
lippserd authored Dec 17, 2024
2 parents ea8ecc7 + 50ac870 commit 58088fd
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 @@ -6,7 +6,7 @@ CREATE TABLE cluster (

CREATE TABLE annotation (
uuid binary(16) NOT NULL,
name varchar(63) COLLATE utf8mb4_unicode_ci NOT NULL,
name varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
value mediumblob NOT NULL,
PRIMARY KEY (uuid)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
Expand Down

0 comments on commit 58088fd

Please sign in to comment.