Always create new tables with UTF8

This commit is contained in:
james 2010-06-10 18:36:10 +00:00
parent 558a724e0e
commit 0938342569

View File

@ -3,6 +3,4 @@ CREATE TABLE `locations` (
`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`conferences_id` INT NOT NULL ,
`name` VARCHAR( 128 ) NOT NULL
) ENGINE = MYISAM ;
) ENGINE = MYISAM CHARACTER SET utf8 COLLATE utf8_general_ci;