• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Windows [help] modern acc

Garndalf

New Member
Joined
Jul 31, 2008
Messages
89
Reaction score
0
I AM USING MODERN ACC WITH UNIFORM SERVER AND I GOT THE FOLLOWING ERROR NEED SOLUTION PLEASE

SQLSTATE[42S02]: Base table or view not found: 1146 Table 'otland.killers' doesn't exist
 
Table 'otland.killers' doesn't exist <-- does not exist in your database
use the sql and paste this.
Code:
CREATE TABLE IF NOT EXISTS `killers` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `death_id` int(11) NOT NULL,
  `final_hit` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `unjustified` tinyint(1) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `death_id` (`death_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
 
Back
Top