· 6 years ago · Jul 09, 2019, 01:02 PM
1-- --------------------------------------------------------
2-- Host: 127.0.0.1
3-- Versión del servidor: 5.5.5-10.1.29-MariaDB - mariadb.org binary distribution
4-- SO del servidor: Win32
5-- HeidiSQL Versión: 8.0.0.4396
6-- --------------------------------------------------------
7
8/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
9/*!40101 SET NAMES utf8 */;
10/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
11/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
12
13-- Volcando estructura de base de datos para gtav
14DROP DATABASE IF EXISTS `pingu_fivem`;
15CREATE DATABASE IF NOT EXISTS `pingu_fivem` /*!40100 DEFAULT CHARACTER SET latin1 COLLATE latin1_general_ci */;
16USE `pingu_fivem`;
17
18
19-- Volcando estructura para tabla gtav.accounts
20DROP TABLE IF EXISTS `accounts`;
21CREATE TABLE IF NOT EXISTS `accounts` (
22 `socialName` varchar(32) NOT NULL,
23 `forumName` varchar(32) NOT NULL DEFAULT '',
24 `password` varchar(64) NOT NULL,
25 `status` int(11) NOT NULL DEFAULT '1',
26 `lastCharacter` int(11) NOT NULL DEFAULT '-1',
27 `lastIp` varchar(16) NOT NULL DEFAULT '',
28 `updated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
29 `retries` int(11) NOT NULL DEFAULT '0',
30 PRIMARY KEY (`socialName`)
31) ENGINE=InnoDB DEFAULT CHARSET=utf8;
32
33-- La exportación de datos fue deseleccionada.
34
35
36-- Volcando estructura para tabla gtav.admin
37DROP TABLE IF EXISTS `admin`;
38CREATE TABLE IF NOT EXISTS `admin` (
39 `source` varchar(24) NOT NULL DEFAULT '',
40 `target` varchar(24) NOT NULL DEFAULT '',
41 `action` varchar(32) NOT NULL DEFAULT '',
42 `time` int(11) NOT NULL DEFAULT '0',
43 `reason` varchar(150) NOT NULL DEFAULT '',
44 `date` datetime NOT NULL,
45 PRIMARY KEY (`source`,`target`,`date`)
46) ENGINE=InnoDB DEFAULT CHARSET=utf8;
47
48-- La exportación de datos fue deseleccionada.
49
50
51-- Volcando estructura para tabla gtav.answers
52DROP TABLE IF EXISTS `answers`;
53CREATE TABLE IF NOT EXISTS `answers` (
54 `id` int(10) NOT NULL AUTO_INCREMENT,
55 `question` int(11) NOT NULL,
56 `answer` text NOT NULL,
57 `correct` bit(1) NOT NULL DEFAULT b'0',
58 PRIMARY KEY (`id`)
59) ENGINE=InnoDB DEFAULT CHARSET=utf8;
60
61-- La exportación de datos fue deseleccionada.
62
63
64-- Volcando estructura para tabla gtav.blood
65DROP TABLE IF EXISTS `blood`;
66CREATE TABLE IF NOT EXISTS `blood` (
67 `id` int(11) NOT NULL AUTO_INCREMENT,
68 `doctor` int(11) NOT NULL,
69 `patient` int(11) NOT NULL,
70 `bloodtype` varchar(8) NOT NULL,
71 `used` bit(1) NOT NULL DEFAULT b'0',
72 `date` datetime NOT NULL,
73 PRIMARY KEY (`id`)
74) ENGINE=InnoDB DEFAULT CHARSET=utf8;
75
76-- La exportación de datos fue deseleccionada.
77
78
79-- Volcando estructura para tabla gtav.business
80DROP TABLE IF EXISTS `business`;
81CREATE TABLE IF NOT EXISTS `business` (
82 `id` int(10) NOT NULL AUTO_INCREMENT,
83 `type` int(10) NOT NULL DEFAULT '0',
84 `ipl` varchar(64) DEFAULT NULL,
85 `posX` float NOT NULL DEFAULT '0',
86 `posY` float NOT NULL DEFAULT '0',
87 `posZ` float NOT NULL DEFAULT '0',
88 `dimension` int(11) NOT NULL DEFAULT '0',
89 `name` varchar(64) NOT NULL DEFAULT 'Negocio',
90 `owner` varchar(32) NOT NULL DEFAULT '',
91 `funds` int(11) NOT NULL DEFAULT '0',
92 `products` int(11) NOT NULL DEFAULT '0',
93 `multiplier` float NOT NULL DEFAULT '3',
94 `locked` bit(1) NOT NULL DEFAULT b'0',
95 PRIMARY KEY (`id`)
96) ENGINE=InnoDB DEFAULT CHARSET=utf8;
97
98-- La exportación de datos fue deseleccionada.
99
100
101-- Volcando estructura para tabla gtav.calls
102DROP TABLE IF EXISTS `calls`;
103CREATE TABLE IF NOT EXISTS `calls` (
104 `phone` int(10) NOT NULL,
105 `target` int(10) NOT NULL,
106 `time` int(10) NOT NULL,
107 `date` datetime NOT NULL,
108 PRIMARY KEY (`phone`,`target`,`date`)
109) ENGINE=InnoDB DEFAULT CHARSET=utf8;
110
111-- La exportación de datos fue deseleccionada.
112
113
114-- Volcando estructura para tabla gtav.channels
115DROP TABLE IF EXISTS `channels`;
116CREATE TABLE IF NOT EXISTS `channels` (
117 `id` int(10) NOT NULL AUTO_INCREMENT,
118 `owner` int(10) NOT NULL DEFAULT '0',
119 `password` varchar(32) NOT NULL,
120 PRIMARY KEY (`id`)
121) ENGINE=InnoDB DEFAULT CHARSET=utf8;
122
123-- La exportación de datos fue deseleccionada.
124
125
126-- Volcando estructura para tabla gtav.clothes
127DROP TABLE IF EXISTS `clothes`;
128CREATE TABLE IF NOT EXISTS `clothes` (
129 `id` int(10) NOT NULL AUTO_INCREMENT,
130 `player` int(10) NOT NULL DEFAULT '0',
131 `type` int(10) NOT NULL DEFAULT '0',
132 `slot` int(10) NOT NULL DEFAULT '0',
133 `drawable` int(10) NOT NULL DEFAULT '0',
134 `dressed` bit(1) NOT NULL DEFAULT b'0',
135 PRIMARY KEY (`id`)
136) ENGINE=InnoDB DEFAULT CHARSET=utf8;
137
138-- La exportación de datos fue deseleccionada.
139
140
141-- Volcando estructura para tabla gtav.contacts
142DROP TABLE IF EXISTS `contacts`;
143CREATE TABLE IF NOT EXISTS `contacts` (
144 `id` int(11) NOT NULL AUTO_INCREMENT,
145 `owner` int(6) NOT NULL,
146 `contactNumber` int(6) NOT NULL,
147 `contactName` varchar(20) NOT NULL DEFAULT '',
148 PRIMARY KEY (`id`)
149) ENGINE=InnoDB DEFAULT CHARSET=utf8;
150
151-- La exportación de datos fue deseleccionada.
152
153
154-- Volcando estructura para tabla gtav.controls
155DROP TABLE IF EXISTS `controls`;
156CREATE TABLE IF NOT EXISTS `controls` (
157 `id` int(10) NOT NULL AUTO_INCREMENT,
158 `name` varchar(24) NOT NULL DEFAULT '',
159 `item` int(10) NOT NULL DEFAULT '0',
160 `posX` float NOT NULL DEFAULT '0',
161 `posY` float NOT NULL DEFAULT '0',
162 `posZ` float NOT NULL DEFAULT '0',
163 `rotation` float NOT NULL DEFAULT '0',
164 PRIMARY KEY (`id`)
165) ENGINE=InnoDB DEFAULT CHARSET=utf8;
166
167-- La exportación de datos fue deseleccionada.
168
169
170-- Volcando estructura para tabla gtav.fines
171DROP TABLE IF EXISTS `fines`;
172CREATE TABLE IF NOT EXISTS `fines` (
173 `officer` varchar(32) NOT NULL DEFAULT '',
174 `target` varchar(32) NOT NULL DEFAULT '',
175 `amount` int(10) NOT NULL DEFAULT '0',
176 `reason` varchar(128) NOT NULL DEFAULT '',
177 `date` datetime NOT NULL,
178 PRIMARY KEY (`officer`,`target`,`date`)
179) ENGINE=InnoDB DEFAULT CHARSET=utf8;
180
181-- La exportación de datos fue deseleccionada.
182
183
184-- Volcando estructura para tabla gtav.furniture
185DROP TABLE IF EXISTS `furniture`;
186CREATE TABLE IF NOT EXISTS `furniture` (
187 `id` int(10) NOT NULL AUTO_INCREMENT,
188 `hash` int(10) NOT NULL DEFAULT '0',
189 `house` int(10) NOT NULL DEFAULT '0',
190 `posX` float NOT NULL DEFAULT '0',
191 `posY` float NOT NULL DEFAULT '0',
192 `posZ` float NOT NULL DEFAULT '0',
193 `rotation` float NOT NULL DEFAULT '0',
194 PRIMARY KEY (`id`)
195) ENGINE=InnoDB DEFAULT CHARSET=utf8;
196
197-- La exportación de datos fue deseleccionada.
198
199
200-- Volcando estructura para tabla gtav.hotwires
201DROP TABLE IF EXISTS `hotwires`;
202CREATE TABLE IF NOT EXISTS `hotwires` (
203 `vehicle` int(10) NOT NULL,
204 `player` varchar(24) NOT NULL DEFAULT '',
205 `posX` float NOT NULL,
206 `posY` float NOT NULL,
207 `posZ` float NOT NULL,
208 `date` datetime NOT NULL,
209 PRIMARY KEY (`player`,`vehicle`,`date`)
210) ENGINE=InnoDB DEFAULT CHARSET=utf8;
211
212-- La exportación de datos fue deseleccionada.
213
214
215-- Volcando estructura para tabla gtav.houses
216DROP TABLE IF EXISTS `houses`;
217CREATE TABLE IF NOT EXISTS `houses` (
218 `id` int(10) NOT NULL AUTO_INCREMENT,
219 `ipl` varchar(32) NOT NULL DEFAULT '',
220 `posX` float NOT NULL DEFAULT '0',
221 `posY` float NOT NULL DEFAULT '0',
222 `posZ` float NOT NULL DEFAULT '0',
223 `dimension` int(11) NOT NULL DEFAULT '0',
224 `name` varchar(32) NOT NULL DEFAULT 'Casa',
225 `price` int(11) NOT NULL DEFAULT '10000',
226 `owner` varchar(32) NOT NULL DEFAULT '',
227 `status` int(1) NOT NULL DEFAULT '2',
228 `tenants` int(1) NOT NULL DEFAULT '0',
229 `rental` int(10) NOT NULL DEFAULT '0',
230 `locked` bit(1) NOT NULL DEFAULT b'1',
231 PRIMARY KEY (`id`)
232) ENGINE=InnoDB DEFAULT CHARSET=utf8;
233
234-- La exportación de datos fue deseleccionada.
235
236
237-- Volcando estructura para tabla gtav.items
238DROP TABLE IF EXISTS `items`;
239CREATE TABLE IF NOT EXISTS `items` (
240 `id` int(11) NOT NULL AUTO_INCREMENT,
241 `hash` varchar(32) NOT NULL DEFAULT '',
242 `ownerEntity` varchar(16) NOT NULL DEFAULT '',
243 `ownerIdentifier` int(11) NOT NULL DEFAULT '0',
244 `amount` int(11) NOT NULL DEFAULT '0',
245 `posX` float NOT NULL DEFAULT '0',
246 `posY` float NOT NULL DEFAULT '0',
247 `posZ` float NOT NULL DEFAULT '0',
248 `dimension` int(11) NOT NULL DEFAULT '0',
249 PRIMARY KEY (`id`)
250) ENGINE=InnoDB DEFAULT CHARSET=utf8;
251
252-- La exportación de datos fue deseleccionada.
253
254
255-- Volcando estructura para tabla gtav.licensed
256DROP TABLE IF EXISTS `licensed`;
257CREATE TABLE IF NOT EXISTS `licensed` (
258 `item` int(11) NOT NULL DEFAULT '0',
259 `buyer` varchar(24) NOT NULL DEFAULT '',
260 `date` datetime NOT NULL,
261 PRIMARY KEY (`item`)
262) ENGINE=InnoDB DEFAULT CHARSET=utf8;
263
264-- La exportación de datos fue deseleccionada.
265
266
267-- Volcando estructura para tabla gtav.messages
268DROP TABLE IF EXISTS `messages`;
269CREATE TABLE IF NOT EXISTS `messages` (
270 `id` int(11) NOT NULL AUTO_INCREMENT,
271 `senderNumber` int(6) NOT NULL DEFAULT '0',
272 `receiverNumber` int(6) NOT NULL DEFAULT '0',
273 `message` varchar(180) NOT NULL DEFAULT '',
274 `deleted` int(11) NOT NULL DEFAULT '0',
275 PRIMARY KEY (`id`)
276) ENGINE=InnoDB DEFAULT CHARSET=utf8;
277
278-- La exportación de datos fue deseleccionada.
279
280
281-- Volcando estructura para tabla gtav.money
282DROP TABLE IF EXISTS `money`;
283CREATE TABLE IF NOT EXISTS `money` (
284 `source` varchar(32) NOT NULL,
285 `receiver` varchar(32) NOT NULL,
286 `type` varchar(32) NOT NULL,
287 `amount` int(11) NOT NULL DEFAULT '0',
288 `date` date NOT NULL,
289 `hour` time NOT NULL
290) ENGINE=InnoDB DEFAULT CHARSET=utf8;
291
292-- La exportación de datos fue deseleccionada.
293
294
295-- Volcando estructura para tabla gtav.news
296DROP TABLE IF EXISTS `news`;
297CREATE TABLE IF NOT EXISTS `news` (
298 `id` int(11) NOT NULL AUTO_INCREMENT,
299 `winner` int(11) NOT NULL DEFAULT '0',
300 `journalist` int(11) NOT NULL DEFAULT '0',
301 `amount` int(11) NOT NULL DEFAULT '0',
302 `annoucement` varchar(150) NOT NULL DEFAULT '0',
303 `date` datetime NOT NULL,
304 `given` bit(1) NOT NULL DEFAULT b'0',
305 PRIMARY KEY (`id`)
306) ENGINE=InnoDB DEFAULT CHARSET=utf8;
307
308-- La exportación de datos fue deseleccionada.
309
310
311-- Volcando estructura para tabla gtav.parkings
312DROP TABLE IF EXISTS `parkings`;
313CREATE TABLE IF NOT EXISTS `parkings` (
314 `id` int(10) NOT NULL AUTO_INCREMENT,
315 `type` int(1) NOT NULL DEFAULT '0',
316 `house` int(11) NOT NULL DEFAULT '0',
317 `posX` float NOT NULL DEFAULT '0',
318 `posY` float NOT NULL DEFAULT '0',
319 `posZ` float NOT NULL DEFAULT '0',
320 `capacity` int(11) NOT NULL DEFAULT '0',
321 PRIMARY KEY (`id`)
322) ENGINE=InnoDB DEFAULT CHARSET=utf8;
323
324-- La exportación de datos fue deseleccionada.
325
326
327-- Volcando estructura para tabla gtav.permissions
328DROP TABLE IF EXISTS `permissions`;
329CREATE TABLE IF NOT EXISTS `permissions` (
330 `playerId` int(10) NOT NULL DEFAULT '0',
331 `command` varchar(16) NOT NULL DEFAULT '',
332 `option` varchar(16) NOT NULL DEFAULT '',
333 PRIMARY KEY (`playerId`,`command`,`option`)
334) ENGINE=InnoDB DEFAULT CHARSET=utf8;
335
336-- La exportación de datos fue deseleccionada.
337
338
339-- Volcando estructura para tabla gtav.questions
340DROP TABLE IF EXISTS `questions`;
341CREATE TABLE IF NOT EXISTS `questions` (
342 `id` int(10) NOT NULL AUTO_INCREMENT,
343 `question` text NOT NULL,
344 `license` int(11) NOT NULL DEFAULT '0',
345 PRIMARY KEY (`id`)
346) ENGINE=InnoDB DEFAULT CHARSET=utf8;
347
348-- La exportación de datos fue deseleccionada.
349
350
351-- Volcando estructura para tabla gtav.skins
352DROP TABLE IF EXISTS `skins`;
353CREATE TABLE IF NOT EXISTS `skins` (
354 `characterId` int(11) NOT NULL,
355 `firstHeadShape` int(11) NOT NULL,
356 `secondHeadShape` int(11) NOT NULL,
357 `firstSkinTone` int(11) NOT NULL,
358 `secondSkinTone` int(11) NOT NULL,
359 `headMix` float NOT NULL,
360 `skinMix` float NOT NULL,
361 `hairModel` int(10) NOT NULL,
362 `firstHairColor` int(10) NOT NULL,
363 `secondHairColor` int(10) NOT NULL,
364 `beardModel` int(10) NOT NULL,
365 `beardColor` int(10) NOT NULL,
366 `chestModel` int(10) NOT NULL,
367 `chestColor` int(10) NOT NULL,
368 `blemishesModel` int(10) NOT NULL,
369 `ageingModel` int(10) NOT NULL,
370 `complexionModel` int(10) NOT NULL,
371 `sundamageModel` int(10) NOT NULL,
372 `frecklesModel` int(10) NOT NULL,
373 `noseWidth` float NOT NULL,
374 `noseHeight` float NOT NULL,
375 `noseLength` float NOT NULL,
376 `noseBridge` float NOT NULL,
377 `noseTip` float NOT NULL,
378 `noseShift` float NOT NULL,
379 `browHeight` float NOT NULL,
380 `browWidth` float NOT NULL,
381 `cheekboneHeight` float NOT NULL,
382 `cheekboneWidth` float NOT NULL,
383 `cheeksWidth` float NOT NULL,
384 `eyes` float NOT NULL,
385 `lips` float NOT NULL,
386 `jawWidth` float NOT NULL,
387 `jawHeight` float NOT NULL,
388 `chinLength` float NOT NULL,
389 `chinPosition` float NOT NULL,
390 `chinWidth` float NOT NULL,
391 `chinShape` float NOT NULL,
392 `neckWidth` float NOT NULL,
393 `eyesColor` int(11) NOT NULL,
394 `eyebrowsModel` int(11) NOT NULL,
395 `eyebrowsColor` int(11) NOT NULL,
396 `makeupModel` int(11) NOT NULL,
397 `blushModel` int(11) NOT NULL,
398 `blushColor` int(11) NOT NULL,
399 `lipstickModel` int(11) NOT NULL,
400 `lipstickColor` int(11) NOT NULL,
401 PRIMARY KEY (`characterId`)
402) ENGINE=InnoDB DEFAULT CHARSET=utf8;
403
404-- La exportación de datos fue deseleccionada.
405
406
407-- Volcando estructura para tabla gtav.sms
408DROP TABLE IF EXISTS `sms`;
409CREATE TABLE IF NOT EXISTS `sms` (
410 `phone` int(10) NOT NULL,
411 `target` int(10) NOT NULL,
412 `message` varchar(140) NOT NULL,
413 `date` datetime NOT NULL,
414 PRIMARY KEY (`phone`,`target`,`date`)
415) ENGINE=InnoDB DEFAULT CHARSET=utf8;
416
417-- La exportación de datos fue deseleccionada.
418
419
420-- Volcando estructura para tabla gtav.tattoos
421DROP TABLE IF EXISTS `tattoos`;
422CREATE TABLE IF NOT EXISTS `tattoos` (
423 `player` int(10) NOT NULL DEFAULT '0',
424 `zone` int(10) NOT NULL DEFAULT '0',
425 `library` varchar(32) NOT NULL DEFAULT '',
426 `hash` varchar(32) NOT NULL DEFAULT '',
427 PRIMARY KEY (`player`,`hash`)
428) ENGINE=InnoDB DEFAULT CHARSET=utf8;
429
430-- La exportación de datos fue deseleccionada.
431
432
433-- Volcando estructura para tabla gtav.tunning
434DROP TABLE IF EXISTS `tunning`;
435CREATE TABLE IF NOT EXISTS `tunning` (
436 `id` int(11) NOT NULL AUTO_INCREMENT,
437 `vehicle` int(11) NOT NULL DEFAULT '0',
438 `slot` int(11) NOT NULL DEFAULT '0',
439 `component` int(11) NOT NULL DEFAULT '0',
440 PRIMARY KEY (`id`)
441) ENGINE=InnoDB DEFAULT CHARSET=utf8;
442
443-- La exportación de datos fue deseleccionada.
444
445
446-- Volcando estructura para tabla gtav.users
447DROP TABLE IF EXISTS `users`;
448CREATE TABLE IF NOT EXISTS `users` (
449 `id` int(11) NOT NULL AUTO_INCREMENT,
450 `name` varchar(32) NOT NULL,
451 `posX` float(10,0) NOT NULL DEFAULT '201',
452 `posY` float NOT NULL DEFAULT '-932.094',
453 `posZ` float NOT NULL DEFAULT '30.6868',
454 `rotation` float NOT NULL DEFAULT '0',
455 `money` int(11) NOT NULL DEFAULT '0',
456 `bank` int(11) NOT NULL DEFAULT '3500',
457 `health` int(11) NOT NULL DEFAULT '100',
458 `armor` int(11) NOT NULL DEFAULT '0',
459 `age` int(11) NOT NULL DEFAULT '14',
460 `sex` int(11) NOT NULL DEFAULT '0',
461 `faction` int(11) NOT NULL DEFAULT '0',
462 `job` int(11) NOT NULL DEFAULT '0',
463 `rank` int(11) NOT NULL DEFAULT '0',
464 `phone` int(11) NOT NULL DEFAULT '0',
465 `radio` int(11) NOT NULL DEFAULT '0',
466 `jailed` varchar(8) NOT NULL DEFAULT '0,0',
467 `carKeys` varchar(32) NOT NULL DEFAULT '0,0,0,0,0',
468 `documentation` int(11) NOT NULL DEFAULT '0',
469 `licenses` varchar(32) NOT NULL DEFAULT '-1,-1,-1',
470 `insurance` int(11) NOT NULL DEFAULT '0',
471 `weaponLicense` int(11) NOT NULL DEFAULT '0',
472 `houseRent` int(11) NOT NULL DEFAULT '0',
473 `houseEntered` int(11) NOT NULL DEFAULT '0',
474 `businessEntered` int(11) NOT NULL DEFAULT '0',
475 `jobDeliver` int(11) NOT NULL DEFAULT '0',
476 `jobCooldown` int(11) NOT NULL DEFAULT '0',
477 `played` int(11) NOT NULL DEFAULT '0',
478 `status` int(11) NOT NULL DEFAULT '1',
479 `socialName` varchar(32) NOT NULL,
480 `adminRank` int(11) NOT NULL DEFAULT '0',
481 `adminname` varchar(24) NOT NULL DEFAULT '',
482 `employeeCooldown` int(11) NOT NULL DEFAULT '0',
483 `duty` int(11) NOT NULL DEFAULT '0',
484 `killed` int(11) NOT NULL DEFAULT '0',
485 `jobPoints` varchar(64) NOT NULL DEFAULT '0,0,0,0,0,0,0',
486 `rolePoints` int(11) NOT NULL DEFAULT '0',
487 PRIMARY KEY (`id`),
488 UNIQUE KEY `name` (`name`)
489) ENGINE=InnoDB DEFAULT CHARSET=utf8;
490
491-- La exportación de datos fue deseleccionada.
492
493
494-- Volcando estructura para tabla gtav.vehicles
495DROP TABLE IF EXISTS `vehicles`;
496CREATE TABLE IF NOT EXISTS `vehicles` (
497 `id` int(11) NOT NULL AUTO_INCREMENT,
498 `model` varchar(32) NOT NULL,
499 `posX` float NOT NULL,
500 `posY` float NOT NULL,
501 `posZ` float NOT NULL,
502 `rotation` float NOT NULL,
503 `firstColor` varchar(12) NOT NULL DEFAULT '0,0,0',
504 `secondColor` varchar(12) NOT NULL DEFAULT '0,0,0',
505 `dimension` int(11) NOT NULL DEFAULT '0',
506 `engine` int(11) NOT NULL DEFAULT '0',
507 `locked` int(11) NOT NULL DEFAULT '0',
508 `faction` int(11) NOT NULL DEFAULT '0',
509 `owner` varchar(32) NOT NULL,
510 `plate` varchar(8) NOT NULL,
511 `price` int(11) NOT NULL DEFAULT '0',
512 `parking` int(11) NOT NULL DEFAULT '0',
513 `parkedTime` int(11) NOT NULL DEFAULT '0',
514 `gas` float NOT NULL DEFAULT '0',
515 `kms` float NOT NULL DEFAULT '0',
516 `colorType` int(11) NOT NULL DEFAULT '1',
517 `pearlescent` int(11) NOT NULL DEFAULT '0',
518 PRIMARY KEY (`id`)
519) ENGINE=InnoDB DEFAULT CHARSET=utf8;
520
521-- La exportación de datos fue deseleccionada.
522/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
523/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */;
524/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;