Skip to content
Snippets Groups Projects
Commit 78599791 authored by Glenn Proctor's avatar Glenn Proctor
Browse files

Add BINARY flag to meta.meta_value to make it case sensitive when doing UNIQUE...

Add BINARY flag to meta.meta_value to make it case sensitive when doing UNIQUE comparisions (especially for Gallus/gallus)
parent 46b773cb
No related branches found
No related tags found
No related merge requests found
# patch_50_51_i.sql
#
# title: Meta value binary
#
# description:
# Add BINARY flag to meta.meta_value to make it case sensitive when doing UNIQUE comparisions (especially for Gallus/gallus)
# Drop UNIQUE index first
ALTER TABLE meta DROP INDEX species_key_value_idx;
ALTER TABLE meta CHANGE COLUMN meta_value meta_value VARCHAR(255) BINARY NOT NULL;
# Redo index
ALTER TABLE meta ADD UNIQUE INDEX species_key_value_idx (species_id, meta_key, meta_value);
# patch identifier
INSERT INTO meta (species_id, meta_key, meta_value) VALUES (NULL, 'patch', 'patch_50_51_i.sql|meta_value_binary');
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment