upgrade.3.43.0.to.3.44.0.sql

15 lines | 607 B Blame History Raw Download
-- DB Migration from release 3.42.0 to 3.43.0
-- PR #1657 changes project cache to case insensitive.
-- Below queries are DB specific and only apply to MySQL DB.
--
-- 1. When creating new DB in MySQL,
-- use below query to explicitly set the COLLATION to case insensitive for the entire DB:
--
ALTER DATABASE <database_name> CHARACTER SET utf8 COLLATE utf8_general_ci;
--
-- 2. For existing MySQL DB,
-- use below query to explicitly set the COLLATION to case insensitive for "name" column in
-- "projects" table:
--
ALTER TABLE projects MODIFY name VARCHAR(64) CHARACTER SET utf8 COLLATE utf8_general_ci;