· 8 years ago · Jan 06, 2018, 02:50 AM
1[Err] 1109 - Unknown table 'account_db' in information_schema
2[Err] -- ----------------------------
3-- Table structure for `account_db`
4-- ----------------------------
5
6CREATE TABLE IF NOT EXISTS `account_db` (
7 `Name` text NOT NULL,
8 `Password` text NOT NULL,
9 `GUID` text NOT NULL,
10 `SecretQuestion` text,
11 `SecrectAnswer` text,
12 `Pseudo` text NOT NULL,
13 `Logged` int(11) NOT NULL,
14 `LastIp` text NOT NULL,
15 `LastTime` text NOT NULL,
16 `Email` text,
17 `Banned` int(11) NOT NULL,
18 `BanTime` text NOT NULL,
19 `SecretCode` text,
20 `AdminState` int(11) NOT NULL,
21 PRIMARY KEY (`GUID`(16))
22) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
23[Msg] Finished - Unsuccessfully
24--------------------------------------------------