Originally Posted by
Rhainland
Hey folks, i got a small problem with a freinds navicat, when he's trying to execute Spartans and even Silvermoon's DB
Error that accoured, is the following.
[Err] 1074 - Column length too big for column 'regex_ignore_if_matched' (max = 255); use BLOB or TEXT instead
[Err] -- ----------------------------
-- Table structure for wordfilter_character_names
-- ----------------------------
CREATE TABLE `wordfilter_character_names` (
`regex_match` varchar(500) NOT NULL,
`regex_ignore_if_matched` varchar(500) NOT NULL default ''
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
[Msg] Finished - Unsuccessfully
--------------------------------------------------
I've never seen it before, and i'm totaly clueless, hope we got a guy here thats able to solve the problem
Thanks in advance!
the table you are trying to create has too big column ...
instead of:
Code:
CREATE TABLE `wordfilter_character_names` (
`regex_match` varchar(500) NOT NULL,
`regex_ignore_if_matched` varchar(500) NOT NULL default ''
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
try this one:
Code:
CREATE TABLE `wordfilter_character_names` (
`regex_match` varchar(255) NOT NULL,
`regex_ignore_if_matched` varchar(255) NOT NULL default ''
) ENGINE=InnoDB DEFAULT CHARSET=latin1;