Skip to content

Commit 320aab0

Browse files
authored
Fix collation on ht_institutions schema (#22)
- Originally unset, add utf8_general_ci to be joinable with holdings_htitem_htmember in the catalog indexer.
1 parent 2c1f97c commit 320aab0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sql/000_ht_schema.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ CREATE TABLE `ht_institutions` (
142142
`last_update` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
143143
KEY `ht_institutions_inst_id` (`inst_id`),
144144
KEY `ht_institutions_mapto_inst_id` (`mapto_inst_id`)
145-
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
145+
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
146146

147147

148148
DROP TABLE IF EXISTS `ht_namespaces`;

0 commit comments

Comments
 (0)