Skip to content

Commit

Permalink
Make reference_kind case insensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
jrauh01 committed Jan 3, 2025
1 parent 04da96b commit f0d6a27
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 f0d6a27

Please sign in to comment.