When trying to add the table I get this error
*************THIS IS THE CODE I AM ADDING****************
--
-- Table structure for table `user_board`
--
CREATE TABLE /*$wgDBprefix*/user_board (
`ub_id` int(11) PRIMARY KEY auto_increment,
`ub_user_id` int(11) NOT NULL default '0',
`ub_user_name` varchar(255) NOT NULL default '',
`ub_user_id_from` int(11) NOT NULL default '0',
`ub_user_name_from` varchar(255) NOT NULL default '',
`ub_message` text NOT NULL,
`ub_type` int(5) default '0',
`ub_date` datetime default NULL
) DEFAULT CHARSET=utf8;
CREATE INDEX /*i*/ub_user_id ON /*_*/user_board (ub_user_id),
CREATE INDEX /*i*/ub_user_id_from ON /*_*/user_board (ub_user_id_from),
CREATE INDEX /*i*/ub_type ON /*_*/user_board (ub_type)
*****************THIS IS THE ERROR I AM GETTING**********************
Error
SQL query:
CREATE INDEX /*i*/ub_user_id ON /*_*/user_board(
ub_user_id
),
CREATE INDEX /*i*/ub_user_id_from ON /*_*/user_board(
ub_user_id_from
),
CREATE INDEX /*i*/ub_type ON /*_*/user_board(
ub_type
)
MySQL said:
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '
CREATE INDEX ub_user_id_from ON user_board (ub_user_id_from),
CREATE INDEX ub' at line 1
*************THIS IS THE CODE I AM ADDING****************
--
-- Table structure for table `user_board`
--
CREATE TABLE /*$wgDBprefix*/user_board (
`ub_id` int(11) PRIMARY KEY auto_increment,
`ub_user_id` int(11) NOT NULL default '0',
`ub_user_name` varchar(255) NOT NULL default '',
`ub_user_id_from` int(11) NOT NULL default '0',
`ub_user_name_from` varchar(255) NOT NULL default '',
`ub_message` text NOT NULL,
`ub_type` int(5) default '0',
`ub_date` datetime default NULL
) DEFAULT CHARSET=utf8;
CREATE INDEX /*i*/ub_user_id ON /*_*/user_board (ub_user_id),
CREATE INDEX /*i*/ub_user_id_from ON /*_*/user_board (ub_user_id_from),
CREATE INDEX /*i*/ub_type ON /*_*/user_board (ub_type)
*****************THIS IS THE ERROR I AM GETTING**********************
Error
SQL query:
CREATE INDEX /*i*/ub_user_id ON /*_*/user_board(
ub_user_id
),
CREATE INDEX /*i*/ub_user_id_from ON /*_*/user_board(
ub_user_id_from
),
CREATE INDEX /*i*/ub_type ON /*_*/user_board(
ub_type
)
MySQL said:
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '
CREATE INDEX ub_user_id_from ON user_board (ub_user_id_from),
CREATE INDEX ub' at line 1