roadie/Scripts/MySQL/Upgrade0004.sql
Steven Hildreth 97300534a4 work for #18
2019-11-16 18:08:44 -06:00

3 lines
No EOL
206 B
SQL

-- Add new column to Genre for Normalized Name < 1.0.2.1 database
ALTER TABLE `genre` ADD `normalizedName` varchar(100) NULL;
CREATE INDEX `genre_normalizedName_IDX` USING BTREE ON `genre` (normalizedName);