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

ModernAAC: Messages Table doesnt exist!

Amiroslo

Excellent OT User
Joined
Jul 28, 2009
Messages
6,812
Solutions
6
Reaction score
822
Code:
A Database Error Occurred

Error Number: 1146

Table 'paraot.messages' doesn't exist

SELECT `id` FROM (`messages`) WHERE `to` = '4981728' AND `unread` = 1 AND `delete_to` = 0
 
Well ain't that just unfortunate.

Have you tried manually executing a query, adding the table which I am not willing to post that is already included somewhere in The Modern Automatic Account Creator?
 
I couldnt install it, i serached otland and google and i tried to add the table but i failed?
i tried ADD TABLE 'name' and didnt work lol
 
Code:
CREATE TABLE IF NOT EXISTS `messages` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `from` int(12) DEFAULT NULL,
  `to` int(12) DEFAULT NULL,
  `title` varchar(64) NOT NULL,
  `text` text NOT NULL,
  `time` int(16) unsigned NOT NULL,
  `delete_from` int(1) unsigned NOT NULL,
  `delete_to` int(1) unsigned NOT NULL,
  `unread` int(1) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
 
Back
Top