* change the default charset.

This commit is contained in:
wangchunsheng
2010-01-25 09:21:07 +00:00
parent 3a1224eaf6
commit b65e6f23df

View File

@@ -71,7 +71,7 @@ CREATE TABLE IF NOT EXISTS `zt_burn` (
`left` float NOT NULL,
`consumed` float NOT NULL,
PRIMARY KEY (`project`,`date`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- DROP TABLE IF EXISTS `zt_case`;
CREATE TABLE IF NOT EXISTS `zt_case` (
`id` mediumint(8) unsigned NOT NULL auto_increment,
@@ -295,7 +295,7 @@ CREATE TABLE IF NOT EXISTS `zt_projectProduct` (
`project` mediumint(8) unsigned NOT NULL,
`product` mediumint(8) unsigned NOT NULL,
PRIMARY KEY (`project`,`product`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- DROP TABLE IF EXISTS `zt_projectStory`;
CREATE TABLE IF NOT EXISTS `zt_projectStory` (
`project` mediumint(8) unsigned NOT NULL default '0',