i deleted all files to do with inferno shout box be i upgraded
but it seems theres still stuff in the SQL DB
any one know how to remove?
i updated from 3.6.8 to 3.7 RC1
fight now i cant be fucked removing it any one know how i would use this in my DB
$db->query("CREATE TABLE `" . TABLE_PREFIX . "infernoshout` (
`sid` int(15) NOT NULL auto_increment,
`s_user` int(15) NOT NULL default '0',
`s_time` int(15) NOT NULL default '0',
`s_shout` text NOT NULL,
`s_me` enum('0','1') NOT NULL default '0',
PRIMARY KEY (`sid`)
) TYPE=MyISAM");
$db->query("CREATE TABLE `" . TABLE_PREFIX . "infernoshoutsessions` (
`sid` int(15) NOT NULL auto_increment,
`s_user` int(15) NOT NULL,
`s_activity` int(15) NOT NULL,
PRIMARY KEY (`sid`),
KEY `s_activity` (`s_activity`)
) TYPE=MyISAM");
$db->query("CREATE TABLE `" . TABLE_PREFIX . "infernoshoutusers` (
`s_user` int(15) NOT NULL auto_increment,
`s_bold` enum('1','0') NOT NULL default '0',
`s_italic` enum('1','0') NOT NULL default '0',
`s_underline` enum('1','0') NOT NULL default '0',
`s_color` varchar(20) NOT NULL,
`s_font` varchar(50) NOT NULL,
PRIMARY KEY (`s_user`)
) TYPE=MyISAM");
thanks guy but i fixed it
delete this
but it seems theres still stuff in the SQL DB
any one know how to remove?
i updated from 3.6.8 to 3.7 RC1
fight now i cant be fucked removing it any one know how i would use this in my DB
$db->query("CREATE TABLE `" . TABLE_PREFIX . "infernoshout` (
`sid` int(15) NOT NULL auto_increment,
`s_user` int(15) NOT NULL default '0',
`s_time` int(15) NOT NULL default '0',
`s_shout` text NOT NULL,
`s_me` enum('0','1') NOT NULL default '0',
PRIMARY KEY (`sid`)
) TYPE=MyISAM");
$db->query("CREATE TABLE `" . TABLE_PREFIX . "infernoshoutsessions` (
`sid` int(15) NOT NULL auto_increment,
`s_user` int(15) NOT NULL,
`s_activity` int(15) NOT NULL,
PRIMARY KEY (`sid`),
KEY `s_activity` (`s_activity`)
) TYPE=MyISAM");
$db->query("CREATE TABLE `" . TABLE_PREFIX . "infernoshoutusers` (
`s_user` int(15) NOT NULL auto_increment,
`s_bold` enum('1','0') NOT NULL default '0',
`s_italic` enum('1','0') NOT NULL default '0',
`s_underline` enum('1','0') NOT NULL default '0',
`s_color` varchar(20) NOT NULL,
`s_font` varchar(50) NOT NULL,
PRIMARY KEY (`s_user`)
) TYPE=MyISAM");
thanks guy but i fixed it
delete this