• 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!

pliz help console tfs 1.2

cheka

New Member
Joined
Oct 19, 2011
Messages
13
Reaction score
0
pliz help in console



error - mysql_real_query Query :truncate target table query 'live cast';

message : table 'xxxx,live_cast' doesnt´t exist
 
solutions ?
Code:
CREATE TABLE IF NOT EXISTS `live_casts` (
  `player_id` int(11) NOT NULL,
  `cast_name` varchar(255) NOT NULL,
  `password` boolean NOT NULL DEFAULT false,
  `description` varchar(255),
  `spectators` smallint(5) DEFAULT 0,
  UNIQUE KEY `player_id_2` (`player_id`),
  FOREIGN KEY (`player_id`) REFERENCES `players`(`id`) ON DELETE CASCADE
) ENGINE=InnoDB;
 
Back
Top