· 8 years ago · Dec 21, 2017, 11:12 PM
1-- Les données exportées n'étaient pas sélectionnées.
2-- Export de la structure de la table altislife. players
3CREATE TABLE IF NOT EXISTS `players` (
4 `uid` int(12) NOT NULL AUTO_INCREMENT,
5 `name` varchar(32) NOT NULL,
6 `aliases` text NOT NULL,
7 `playerid` varchar(64) NOT NULL,
8 `cash` int(100) NOT NULL DEFAULT '0',
9 `bankacc` int(100) NOT NULL DEFAULT '0',
10 `coplevel` enum('0','1','2','3','4','5','6','7') NOT NULL DEFAULT '0',
11 `mediclevel` enum('0','1','2','3','4','5') NOT NULL DEFAULT '0',
12 `civ_licenses` text NOT NULL,
13 `cop_licenses` text NOT NULL,
14 `med_licenses` text NOT NULL,
15 `civ_gear` text NOT NULL,
16 `cop_gear` text NOT NULL,
17 `med_gear` text NOT NULL,
18 `civ_stats` varchar(32) NOT NULL DEFAULT '"[100,100,0]"',
19 `cop_stats` varchar(32) NOT NULL DEFAULT '"[100,100,0]"',
20 `med_stats` varchar(32) NOT NULL DEFAULT '"[100,100,0]"',
21 `arrested` tinyint(1) NOT NULL DEFAULT '0',
22 `adminlevel` enum('0','1','2','3','4','5') NOT NULL DEFAULT '0',
23 `donorlevel` enum('0','1','2','3','4','5') NOT NULL DEFAULT '0',
24 `blacklist` tinyint(1) NOT NULL DEFAULT '0',
25 `civ_alive` tinyint(1) NOT NULL DEFAULT '0',
26 `civ_position` varchar(64) NOT NULL DEFAULT '"[]"',
27 `playtime` varchar(32) NOT NULL DEFAULT '"[0,0,0]"',
28 `insert_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
29 `last_seen` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
30 `credit` int(3) NOT NULL DEFAULT '0',
31 `sponsor` varchar(17) DEFAULT NULL,
32 PRIMARY KEY (`uid`),
33 UNIQUE KEY `playerid` (`playerid`),
34 KEY `name` (`name`),
35 KEY `blacklist` (`blacklist`)
36) ENGINE=InnoDB AUTO_INCREMENT=193 DEFAULT CHARSET=utf8mb4;