Quote:
Originally Posted by parseforum
I can not go to the forum 
|
Please run these queries manually:
Quote:
CREATE TABLE `" . TABLE_PREFIX . "kbank_donations` (
`id` int(11) NOT NULL auto_increment,
`from` int(11) NOT NULL default 0,
`to` int(11) NOT NULL default 0,
`amount` int(11) NOT NULL default 0,
`tax` int(11) NOT NULL default 0,
`time` int(11) NOT NULL,
`comment` TEXT NOT NULL,
`postid` int(11) NOT NULL default 0,
PRIMARY KEY (`id`)
) TYPE=MyISAM;
CREATE TABLE IF NOT EXISTS " . TABLE_PREFIX . "kbank_ban (
`id` int(11) NOT NULL auto_increment,
`userid` int(10) unsigned NOT NULL,
`time` int(11) NOT NULL,
`days` int (11) NOT NULL,
`reason` text NOT NULL,
`adminid` int (10) unsigned NOT NULL,
PRIMARY KEY (`id`)
) TYPE=MyISAM;
CREATE TABLE IF NOT EXISTS " . TABLE_PREFIX . "kbank_banklogs (
`id` int(11) NOT NULL auto_increment,
`itemname` varchar(255) NOT NULL,
`itemtype` varchar(100) NOT NULL,
`amount` int(11) NOT NULL,
`time` int(11) NOT NULL,
`userid` int (10) unsigned NOT NULL,
`status` int(11) NOT NULL default 0,
PRIMARY KEY (`id`)
) TYPE=MyISAM;
INSERT INTO `" . TABLE_PREFIX . "kbank_banklogs`
(id,itemname,itemtype,amount,time,userid)
VALUES
(1,'post','money',0," . TIMENOW . ",0),
(2,'register','money',0," . TIMENOW . ",0),
(3,'referer','money',0," . TIMENOW . ",0),
(4,'admindonate','money',0," . TIMENOW . ",0),
(5,'items','money',0," . TIMENOW . ",0),
(6,'other','money',0," . TIMENOW . ",0)
(7,'tax','money',0," . TIMENOW . ",0);
CREATE TABLE IF NOT EXISTS `" . TABLE_PREFIX . "kbank_items` (
`itemid` int(11) NOT NULL auto_increment,
`type` varchar(100) default NULL,
`name` varchar(200) default NULL,
`description` varchar(200) default NULL,
`price` int(11) default 0,
`userid` int(10) default 0,
`creator` int(10) default 0,
`create_time` int(11) default 0,
`expire_time` int(11) default 0,
`options` text,
`status` int(11) NOT NULL default '0',
PRIMARY KEY (`itemid`)
) TYPE=MyISAM;
CREATE TABLE IF NOT EXISTS `" . TABLE_PREFIX . "kbank_itemtypes` (
`itemtypeid` int(11) NOT NULL auto_increment,
`name` varchar(100) default NULL,
`filename` varchar(100) default NULL,
`userid` text,
`description` text,
`price` int(11) default 0,
`options` text,
PRIMARY KEY (`itemtypeid`)
) TYPE=MyISAM;
CREATE TABLE IF NOT EXISTS " . TABLE_PREFIX . "kbank_logs (
`id` int(11) NOT NULL auto_increment,
`type` int(4) default '1',
`userid` int(11) default NULL,
`timeline` int(11) default NULL,
`text1` text,
`int1` int(11) default NULL,
`detail` text,
PRIMARY KEY (`id`)
) TYPE=MyISAM;
|
Gud luck
|