本帖最后由 8783 于 2009-10-21 23:11 编辑
不知與升級數據有沒有關係
CREATE TABLE `uchome_plug_newfarm` (
`uid` mediumint(8) NOT NULL,
`farmlandstatus` text character set utf8 NOT NULL,
`animal` text character set utf8 NOT NULL,
`taskid` int(2) NOT NULL default '1',
`charm` int(10) NOT NULL default '0',
`money` int(10) NOT NULL default '0',
`exp` int(10) NOT NULL default '0',
`mc_exp` int(10) NOT NULL default '0',
`fb` int(10) NOT NULL default '0',
`reclaim` smallint(2) NOT NULL default '6',
`package` text character set utf8 NOT NULL,
`mc_package` text character set utf8 NOT NULL,
`fertilizer` text character set utf8 NOT NULL,
`decorative` text character set utf8 NOT NULL,
`fruit` text character set utf8 NOT NULL,
`dog` text character set utf8 NOT NULL,
`nosegay` text character set utf8 NOT NULL,
`message` text character set utf8 NOT NULL,
`mc_taskid` int(2) NOT NULL default '0',
`mc_taskid1` int(2) NOT NULL default '0',
`mc_log` text character set utf8 NOT NULL,
PRIMARY KEY (`uid`)
) ENGINE=MyISAM DEFAULT CHARSET=big5;
導出後顯示為
DROP TABLE IF EXISTS uchome_plug_newfarm;
CREATE TABLE uchome_plug_newfarm (
uid mediumint(8) NOT NULL,
farmlandstatus text NOT NULL,
animal text NOT NULL,
taskid int(2) NOT NULL default '1',
charm int(10) NOT NULL default '0',
money int(10) NOT NULL default '0',
exp int(10) NOT NULL default '0',
mc_exp int(10) NOT NULL default '0',
fb int(10) NOT NULL default '0',
reclaim smallint(2) NOT NULL default '6',
package text NOT NULL,
mc_package text NOT NULL,
fertilizer text NOT NULL,
decorative text NOT NULL,
fruit text NOT NULL,
dog text NOT NULL,
nosegay text NOT NULL,
message text NOT NULL,
mc_taskid int(2) NOT NULL default '0',
mc_taskid1 int(2) NOT NULL default '0',
mc_log text NOT NULL,
PRIMARY KEY (uid)
) ENGINE=MyISAM DEFAULT CHARSET=big5; |