-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathframeworkdb.sql
More file actions
449 lines (393 loc) · 17.2 KB
/
frameworkdb.sql
File metadata and controls
449 lines (393 loc) · 17.2 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
-- Databasestructuur van mercy-framework wordt geschreven
CREATE DATABASE IF NOT EXISTS `mercy-framework` /*!40100 DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci */;
USE `mercy-framework`;
-- Structuur van tabel mercy-framework.bans wordt geschreven
CREATE TABLE IF NOT EXISTS `bans` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`banid` varchar(50) DEFAULT NULL,
`name` varchar(50) DEFAULT NULL,
`steam` varchar(255) DEFAULT NULL,
`license` varchar(255) DEFAULT NULL,
`discord` varchar(50) DEFAULT NULL,
`ip` varchar(50) DEFAULT NULL,
`reason` text DEFAULT NULL,
`bannedby` varchar(255) NOT NULL,
`expire` int(11) DEFAULT NULL,
`bannedon` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
-- Data exporteren was gedeselecteerd
-- Structuur van tabel mercy-framework.hotel_rooms wordt geschreven
CREATE TABLE IF NOT EXISTS `hotel_rooms` (
`RoomId` int(11) DEFAULT NULL,
`RoomInfo` text DEFAULT NULL,
`Available` int(11) DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
INSERT INTO `hotel_rooms` (`RoomId`, `RoomInfo`, `Available`) VALUES
(501, 'Room-501', 1),
(502, 'Room-502', 1),
(503, 'Room-503', 1),
(504, 'Room-504', 1),
(505, 'Room-505', 1),
(506, 'Room-506', 1),
(507, 'Room-507', 1),
(508, 'Room-508', 1),
(509, 'Room-509', 1),
(510, 'Room-510', 1),
(511, 'Room-511', 1),
(512, 'Room-512', 1),
(513, 'Room-513', 1),
(514, 'Room-514', 1),
(515, 'Room-515', 1),
(516, 'Room-516', 1),
(517, 'Room-517', 1),
(518, 'Room-518', 1),
(519, 'Room-519', 1),
(520, 'Room-520', 1),
(521, 'Room-521', 1),
(522, 'Room-522', 1),
(523, 'Room-523', 1),
(524, 'Room-524', 1);
-- Data exporteren was gedeselecteerd
-- Structuur van tabel mercy-framework.logs wordt geschreven
CREATE TABLE IF NOT EXISTS `logs` (
`Type` text DEFAULT NULL,
`Steam` varchar(255) DEFAULT NULL,
`Date` timestamp NULL DEFAULT current_timestamp(),
`Log` text DEFAULT NULL,
`Cid` varchar(50) DEFAULT NULL,
`Data` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
-- Data exporteren was gedeselecteerd
CREATE TABLE IF NOT EXISTS `mdw_announcements` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` text DEFAULT NULL,
`text` mediumtext DEFAULT NULL,
`created` bigint(255) DEFAULT floor(unix_timestamp(current_timestamp(3)) * 1000),
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
CREATE TABLE IF NOT EXISTS `mdw_evidences` (
`id` int(11) NOT NULL,
`type` varchar(50) DEFAULT NULL,
`identifier` text DEFAULT NULL,
`description` text DEFAULT NULL,
`reportid` varchar(50) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
CREATE TABLE IF NOT EXISTS `mdw_legislation` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` text DEFAULT NULL,
`content` text DEFAULT NULL,
`created` bigint(255) DEFAULT floor(unix_timestamp(current_timestamp(3)) * 1000),
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
CREATE TABLE IF NOT EXISTS `mdw_profiles` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`citizenid` varchar(50) DEFAULT NULL,
`name` varchar(50) DEFAULT NULL,
`image` text DEFAULT NULL,
`notes` text DEFAULT '',
`tags` text DEFAULT '[]',
`priors` text DEFAULT '[]',
`charges` text DEFAULT '[]',
`wanted` varchar(50) DEFAULT 'False',
`created` bigint(255) DEFAULT floor(unix_timestamp(current_timestamp(3)) * 1000),
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
CREATE TABLE IF NOT EXISTS `mdw_reports` (
`report` int(11) NOT NULL AUTO_INCREMENT,
`id` varchar(50) DEFAULT NULL,
`title` varchar(50) DEFAULT NULL,
`category` varchar(50) DEFAULT NULL,
`content` longtext DEFAULT NULL,
`author` varchar(50) DEFAULT NULL,
`tags` text DEFAULT '[]',
`officers` text DEFAULT '[]',
`scums` text DEFAULT '[]',
`evidences` varchar(50) DEFAULT '[]',
`created` bigint(255) DEFAULT floor(unix_timestamp(current_timestamp(3)) * 1000),
PRIMARY KEY (`report`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
CREATE TABLE IF NOT EXISTS `mdw_staff` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`citizenid` varchar(50) DEFAULT NULL,
`name` varchar(50) DEFAULT NULL,
`rank` varchar(50) DEFAULT NULL,
`image` text DEFAULT NULL,
`notes` text DEFAULT NULL,
`callsign` varchar(50) DEFAULT NULL,
`department` varchar(50) DEFAULT NULL,
`tags` text DEFAULT '[]',
`created` bigint(20) DEFAULT floor(unix_timestamp(current_timestamp(3)) * 1000),
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
CREATE TABLE IF NOT EXISTS `mdw_warrants` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(50) DEFAULT NULL,
`report` varchar(50) DEFAULT NULL,
`mugshot` text NOT NULL,
`expires` bigint(20) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
-- Structuur van tabel mercy-framework.players wordt geschreven
CREATE TABLE IF NOT EXISTS `players` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`Cid` int(11) DEFAULT NULL,
`CitizenId` varchar(50) DEFAULT NULL,
`Name` varchar(50) DEFAULT NULL,
`Identifiers` text DEFAULT NULL,
`Money` text DEFAULT NULL,
`CharInfo` text DEFAULT NULL,
`Job` tinytext DEFAULT NULL,
`Position` text DEFAULT NULL,
`Inventory` varchar(64000) DEFAULT '{}',
`Globals` text DEFAULT NULL,
`Skin` text DEFAULT NULL,
`Licenses` text DEFAULT NULL,
`last_updated` timestamp NULL DEFAULT current_timestamp(),
PRIMARY KEY (`id`),
KEY `citizenid` (`CitizenId`) USING BTREE
) ENGINE=MyISAM AUTO_INCREMENT=4161 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
-- Data exporteren was gedeselecteerd
-- Structuur van tabel mercy-framework.player_accounts wordt geschreven
CREATE TABLE IF NOT EXISTS `player_accounts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`CitizenId` varchar(50) DEFAULT NULL,
`Type` varchar(50) DEFAULT NULL,
`Name` varchar(50) DEFAULT NULL,
`BankId` varchar(50) DEFAULT NULL,
`Balance` bigint(60) DEFAULT 0,
`Authorized` varchar(500) DEFAULT NULL,
`Transactions` varchar(60000) DEFAULT '[]',
`Active` int(11) DEFAULT 1,
`Monitoring` int(11) DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=378 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
-- Data exporteren was gedeselecteerd
-- Structuur van tabel mercy-framework.player_business wordt geschreven
CREATE TABLE IF NOT EXISTS `player_business` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(50) DEFAULT NULL,
`owner` varchar(50) DEFAULT NULL,
`employees` longtext DEFAULT '[]',
`ranks` text DEFAULT '{"Employee":{"Name":"Employee","Default":true,"Permissions":{"pay_employee":false,"stash_access":false,"charge_external":false,"craft_access":false,"property_keys":false,"pay_external":false,"hire":false,"change_role":false,"fire":false}}, "Owner":{"Name":"Owner","Default":true,"Permissions":{"pay_employee":true,"stash_access":true,"charge_external":true,"craft_access":true,"property_keys":true,"pay_external":false,"hire":true,"change_role":true,"fire":true}}}',
`logo` varchar(50) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=23 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
-- Data exporteren was gedeselecteerd
-- Structuur van tabel mercy-framework.player_houses wordt geschreven
CREATE TABLE IF NOT EXISTS `player_houses` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`citizenid` varchar(50) DEFAULT '[]',
`house` varchar(50) DEFAULT NULL,
`label` varchar(50) DEFAULT NULL,
`price` int(11) DEFAULT NULL,
`tier` varchar(50) DEFAULT NULL,
`category` varchar(50) DEFAULT NULL,
`owned` varchar(50) DEFAULT 'true',
`coords` text DEFAULT NULL,
`locations` text DEFAULT '[]',
`hasgarage` int(11) DEFAULT NULL,
`garage` varchar(200) DEFAULT '[]',
`keyholders` text DEFAULT '[]',
`decorations` longtext DEFAULT NULL,
`active` int(11) DEFAULT 1,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=996 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
-- Data exporteren was gedeselecteerd
-- Structuur van tabel mercy-framework.player_house_plants wordt geschreven
CREATE TABLE IF NOT EXISTS `player_house_plants` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`houseid` varchar(50) DEFAULT '11111',
`plants` varchar(65000) DEFAULT '[]',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=60 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
-- Data exporteren was gedeselecteerd
-- Structuur van tabel mercy-framework.player_inventory-stash wordt geschreven
CREATE TABLE IF NOT EXISTS `player_inventory-stash` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`stash` varchar(50) NOT NULL,
`items` longtext DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=5112 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
-- Data exporteren was gedeselecteerd
-- Structuur van tabel mercy-framework.player_inventory-vehicle wordt geschreven
CREATE TABLE IF NOT EXISTS `player_inventory-vehicle` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`plate` varchar(50) NOT NULL,
`trunkitems` longtext DEFAULT NULL,
`gloveboxitems` longtext DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=5401 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
-- Data exporteren was gedeselecteerd
-- Structuur van tabel mercy-framework.player_outfits wordt geschreven
CREATE TABLE IF NOT EXISTS `player_outfits` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`citizenid` varchar(50) DEFAULT NULL,
`outfitname` varchar(50) DEFAULT NULL,
`model` varchar(50) DEFAULT NULL,
`skin` text DEFAULT NULL,
`outfitId` varchar(50) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=4728 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
-- Data exporteren was gedeselecteerd
-- Structuur van tabel mercy-framework.player_phone_contacts wordt geschreven
CREATE TABLE IF NOT EXISTS `player_phone_contacts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`citizenid` varchar(50) DEFAULT NULL,
`name` varchar(100) DEFAULT NULL,
`number` varchar(50) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=147 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
-- Structuur van tabel mercy-framework.player_phone_tweets wordt geschreven
CREATE TABLE IF NOT EXISTS `player_phone_tweets` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`CitizenId` varchar(50) DEFAULT NULL,
`Tweeter` varchar(50) DEFAULT NULL,
`Message` text DEFAULT NULL,
`Time` datetime DEFAULT NULL,
`IsBusiness` tinyint(1) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
-- Data exporteren was gedeselecteerd
-- Structuur van tabel mercy-framework.player_phone_debts wordt geschreven
CREATE TABLE IF NOT EXISTS `player_phone_debts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`citizenid` varchar(50) DEFAULT NULL,
`category` varchar(50) DEFAULT NULL,
`title` varchar(50) DEFAULT NULL,
`amount` int(11) DEFAULT NULL,
`expire` bigint(100) DEFAULT NULL,
`data` text DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
-- Data exporteren was gedeselecteerd
-- Structuur van tabel mercy-framework.player_phone_documents wordt geschreven
CREATE TABLE IF NOT EXISTS `player_phone_documents` (
`citizenid` varchar(50) DEFAULT NULL,
`id` int(11) DEFAULT NULL,
`title` varchar(50) DEFAULT NULL,
`type` varchar(50) DEFAULT NULL,
`content` longtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
-- Data exporteren was gedeselecteerd
-- Structuur van tabel mercy-framework.player_phone_messages wordt geschreven
CREATE TABLE IF NOT EXISTS `player_phone_messages` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`from_phone` text NOT NULL,
`to_phone` text NOT NULL,
`message` longtext NOT NULL,
`attachments` longtext NOT NULL DEFAULT '[]',
`timestamp` timestamp NOT NULL DEFAULT curtime(),
`unread` int(11) NOT NULL DEFAULT 1,
PRIMARY KEY (`id`),
KEY `to_phone` (`to_phone`(3072)),
KEY `from_phone` (`from_phone`(3072))
) ENGINE=InnoDB AUTO_INCREMENT=63 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
-- Data exporteren was gedeselecteerd
-- Structuur van tabel mercy-framework.player_skins wordt geschreven
CREATE TABLE IF NOT EXISTS `player_skins` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`citizenid` varchar(50) NOT NULL DEFAULT '',
`model` varchar(50) NOT NULL DEFAULT '0',
`skin` text NOT NULL,
`tatoos` text DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=21657 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
-- Data exporteren was gedeselecteerd
-- Structuur van tabel mercy-framework.player_vehicles wordt geschreven
CREATE TABLE IF NOT EXISTS `player_vehicles` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`citizenid` varchar(50) DEFAULT NULL,
`vehicle` varchar(50) DEFAULT NULL,
`plate` varchar(50) DEFAULT NULL,
`garage` varchar(50) DEFAULT 'apartment_1',
`state` varchar(50) DEFAULT 'In',
`mods` text DEFAULT NULL,
`damage` text DEFAULT '{"Doors":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false},"Windows":{"1":true,"2":true,"3":true,"4":false,"5":false,"6":true,"7":true,"0":true},"Tyres":{"1":false,"2":false,"3":false,"4":false,"5":false,"0":false}}',
`metadata` varchar(1000) DEFAULT '{"Engine":1000.0,"Body":1000.0,"Fuel":100.0,"Nitrous":0,"Harness":0}',
`parts` varchar(1000) DEFAULT '{"Engine":100.0,"Body":100.0,"Fuel":100.0,"Transmission":100,"FuelInjectors":100,"Axle":100,"Clutch":100,"Brakes":100}',
`vin` varchar(50) DEFAULT NULL,
`type` varchar(50) DEFAULT 'Player',
`impounddata` longtext DEFAULT NULL,
`Flagged` int(11) DEFAULT 0,
`FlagReason` text DEFAULT 'No reason',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=4906 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
-- Data exporteren was gedeselecteerd
-- Structuur van tabel mercy-framework.player_weedplants wordt geschreven
CREATE TABLE IF NOT EXISTS `player_weedplants` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`PlantId` int(11) DEFAULT NULL,
`PlantData` text DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
-- Data exporteren was gedeselecteerd
-- Structuur van tabel mercy-framework.server_bans wordt geschreven
CREATE TABLE IF NOT EXISTS `server_bans` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(50) DEFAULT NULL,
`steam` varchar(50) DEFAULT NULL,
`license` varchar(50) DEFAULT NULL,
`reason` varchar(250) DEFAULT NULL,
`expire` int(11) DEFAULT NULL,
`bannedby` varchar(50) DEFAULT 'Server PC',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=346 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
-- Data exporteren was gedeselecteerd
-- Structuur van tabel mercy-framework.server_cardealer wordt geschreven
CREATE TABLE IF NOT EXISTS `server_cardealer` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`vehicle` varchar(50) DEFAULT NULL,
`stock` int(11) DEFAULT NULL,
`category` varchar(50) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
-- Data exporteren was gedeselecteerd
-- Structuur van tabel mercy-framework.server_lapraces wordt geschreven
CREATE TABLE IF NOT EXISTS `server_lapraces` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(50) DEFAULT NULL,
`checkpoints` text DEFAULT NULL,
`records` text DEFAULT NULL,
`creator` varchar(50) DEFAULT NULL,
`distance` int(11) DEFAULT NULL,
`raceid` varchar(50) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `raceid` (`raceid`)
) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
-- Data exporteren was gedeselecteerd
-- Structuur van tabel mercy-framework.server_users wordt geschreven
CREATE TABLE IF NOT EXISTS `server_users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(50) DEFAULT NULL,
`steam` varchar(50) DEFAULT NULL,
`ip` varchar(75) DEFAULT NULL,
`permission` varchar(50) DEFAULT 'user',
`token` varchar(50) DEFAULT NULL,
`priority` int(11) DEFAULT 3,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=140 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
-- Structuur van tabel mercy-framework.server_logs wordt geschreven
CREATE TABLE IF NOT EXISTS `server_logs` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`cid` varchar(50) DEFAULT NULL,
`name` text DEFAULT NULL,
`log` text DEFAULT NULL,
`date` bigint(255) DEFAULT floor(unix_timestamp(current_timestamp(3)) * 1000),
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=63 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
-- Data exporteren was gedeselecteerd
/*!40103 SET TIME_ZONE=IFNULL(@OLD_TIME_ZONE, 'system') */;
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IFNULL(@OLD_FOREIGN_KEY_CHECKS, 1) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40111 SET SQL_NOTES=IFNULL(@OLD_SQL_NOTES, 1) */;