ok the error is quite simple ill explain you are getting this:
Code:
[Err] 1074 - Column length too big for column 'regex_ignore_if_matched' (max = 255); use BLOB or TEXT instead
CREATE TABLE `wordfilter_character_names` (
`regex_match` varchar(500) NOT NULL,
`regex_ignore_if_matched` varchar(500) NOT NULL default ''
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
[Msg] Finished - Unsuccessfully
--------------------------------------------------
ok now check the red things have you noticed that they are too big lol... just enter you .sql and change
Code:
`regex_ignore_if_matched` varchar(255) NOT NULL default ''
and try to execute it again