· 9 years ago · Oct 21, 2016, 07:46 AM
1
2CREATE TABLE IF NOT EXISTS `DtUser` (
3 `AuthID` varchar(32) DEFAULT NULL,
4 `UserName` varchar(32) DEFAULT NULL,
5 `IPAdress` varchar(32) DEFAULT NULL,
6 `Level` int(11) DEFAULT NULL,
7 `Exp` int(11) DEFAULT NULL,
8 `Money` int(11) DEFAULT NULL,
9 `Online` int(32) DEFAULT NULL,
10 `Damage` int(11) DEFAULT NULL,
11 `Flags` int(11) DEFAULT NULL,
12 `Frags` int(11) DEFAULT NULL,
13 `Deaths` int(11) DEFAULT NULL,
14 `Heads` int(11) DEFAULT NULL,
15 `KnifeKills` int(11) DEFAULT NULL,
16 `NadeKills` int(11) DEFAULT NULL,
17 `LaserKills` int(11) DEFAULT NULL,
18 `SentryKills` int(11) DEFAULT NULL,
19 `JumpShots` int(11) DEFAULT NULL,
20 `AirShots` int(11) DEFAULT NULL,
21 `MarshDead` int(11) DEFAULT NULL,
22 `HuntingForRabbit` int(11) DEFAULT NULL,
23 `DeadBatika` int(11) DEFAULT NULL,
24 `M4A1_Expert` int(11) DEFAULT NULL,
25 `AK47_Expert` int(11) DEFAULT NULL,
26 `AWP_Expert` int(11) DEFAULT NULL,
27 `MP5Navy_Expert` int(11) DEFAULT NULL,
28 `Galil_Expert` int(11) DEFAULT NULL,
29 `Famas_Expert` int(11) DEFAULT NULL,
30 `Glock18_Expert` int(11) DEFAULT NULL,
31 `USP_Expert` int(11) DEFAULT NULL,
32 `Deagle_Expert` int(11) DEFAULT NULL,
33 `Elite_Expert` int(11) DEFAULT NULL,
34 `BanDate` varchar(32) DEFAULT NULL,
35 `BanReason` varchar(64) DEFAULT NULL,
36 `BanAdmin` varchar(32) DEFAULT NULL,
37 `BanTime` int(11) DEFAULT NULL,
38 `LastDate` varchar(32) DEFAULT NULL,
39 KEY `UserName` (`UserName`,`IPAdress`,`AuthID`)
40) ENGINE=InnoDB DEFAULT CHARSET=utf8;