-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathimportDB.sql
More file actions
54 lines (52 loc) · 2.15 KB
/
importDB.sql
File metadata and controls
54 lines (52 loc) · 2.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
CREATE DATABASE IF NOT EXISTS `s2_fivem` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci */;
USE `s2_fivem`;
-- Dumping structure for таблиця s2_fivem.marko_leveling
CREATE TABLE IF NOT EXISTS `marko_leveling` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` varchar(250) DEFAULT NULL,
`busdriver_xp` int(11) DEFAULT 0,
`busdriver_lvl` int(11) DEFAULT 0,
`lumberjack_xp` int(11) DEFAULT 0,
`lumberjack_lvl` int(11) DEFAULT 0,
`medic_xp` int(11) DEFAULT 0,
`medic_lvl` int(11) DEFAULT 0,
`gruppe_xp` int(11) DEFAULT 0,
`gruppe_lvl` int(11) DEFAULT 0,
`deliveryman_xp` int(11) DEFAULT 0,
`deliveryman_lvl` int(11) DEFAULT 0,
`postman_xp` int(11) DEFAULT 0,
`postman_lvl` int(11) DEFAULT 0,
`player_xp` int(11) DEFAULT 0,
`player_lvl` int(11) DEFAULT 0,
`player_playtime` int(11) DEFAULT 0,
`toolbox_xp` int(11) DEFAULT 0,
`toolbox_lvl` int(11) DEFAULT 0,
`carreturn_xp` int(11) DEFAULT 0,
`carreturn_lvl` int(11) DEFAULT 0,
`carjack_xp` int(11) DEFAULT 0,
`carjack_lvl` int(11) DEFAULT 0,
`total_count_carjack` int(11) DEFAULT 0,
`total_return` int(11) DEFAULT 0,
`miner_xp` int(11) DEFAULT 0,
`miner_lvl` int(11) DEFAULT 0,
`drugdroper_xp` int(11) DEFAULT 0,
`drugdroper_lvl` int(11) DEFAULT 0,
`oilrig_xp` int(11) DEFAULT 0,
`oilrig_lvl` int(11) DEFAULT 0,
`builder_xp` int(11) DEFAULT 0,
`builder_lvl` int(11) DEFAULT 0,
`farmer_xp` int(11) DEFAULT 0,
`farmer_lvl` int(11) DEFAULT 0,
`electrician_xp` int(11) DEFAULT 0,
`electrician_lvl` int(11) DEFAULT 0,
`houserobbery_xp` int(11) DEFAULT 0,
`houserobbery_lvl` int(11) DEFAULT 0,
`hunter_lvl` int(11) DEFAULT 0,
`fisherman_xp` int(11) DEFAULT 0,
`fisherman_lvl` int(11) DEFAULT 0,
`hunter_xp` int(11) DEFAULT NULL,
`settings` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`settings`)),
`achievements` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`achievements`)),
`inventory` text DEFAULT '{}',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;