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

Error in Create Account Moder ACC

airton

New Member
Joined
Jun 27, 2009
Messages
9
Reaction score
0
Hello, I'm with an error when creating account in modern acc, I'm looking for a solution for hours, resolved bugs of various polls but this error is impossible, if someone could show me a perfect database for Moder ACC or help me be very grateful

The following error is this:
A Database Error Occurred
Error Number: 1146

Table 'maelstrom.messages' does not exist

SELECT `id` FROM (`messages`) WHERE `to` = 9983495 AND `unread` = 1 AND `` delete_to = 0


Plz help me, thanks.
 
Run this query in your phpmyadmin (or CLI)
SQL:
CREATE TABLE IF NOT EXISTS `messages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `from` int(11),
  `to` int(11),
  `title` varchar(120),
  `text` tinytext,
  `time` int(11),
  `delete_from` tinyint(1),
  `delete_to` tinyint(1),
  `unread` tinyint(1),
  PRIMARY KEY (`id`),
  FOREIGN KEY (`from`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
  FOREIGN KEY (`to`) REFERENCES `accounts` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
 
Back
Top