· 9 years ago · Dec 15, 2016, 09:27 PM
1-- --------------------------------------------------------
2-- Host: 127.0.0.1
3-- Server version: 10.1.9-MariaDB - mariadb.org binary distribution
4-- Server OS: Win32
5-- HeidiSQL Version: 9.3.0.4984
6-- --------------------------------------------------------
7
8/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
9/*!40101 SET NAMES utf8mb4 */;
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-- Dumping database structure for fivemp
14CREATE DATABASE IF NOT EXISTS `fivemp` /*!40100 DEFAULT CHARACTER SET latin1 */;
15USE `fivemp`;
16
17
18-- Dumping structure for table fivemp.users
19CREATE TABLE IF NOT EXISTS `users` (
20 `id` int(11) NOT NULL AUTO_INCREMENT,
21 `username` varchar(50) DEFAULT '0',
22 `password` varchar(50) DEFAULT '0',
23 `email` varchar(50) DEFAULT '0',
24 `regDate` datetime DEFAULT CURRENT_TIMESTAMP,
25 `lastOnline` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
26 `adminLevel` int(11) NOT NULL DEFAULT '0',
27 `cash` bigint(20) DEFAULT '0',
28 `bank` bigint(20) DEFAULT '0',
29 `skin` int(11) DEFAULT '0',
30 PRIMARY KEY (`id`)
31) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=latin1;
32
33-- Dumping data for table fivemp.users: ~13 rows (approximately)
34/*!40000 ALTER TABLE `users` DISABLE KEYS */;
35INSERT INTO `users` (`id`, `username`, `password`, `email`, `regDate`, `lastOnline`, `adminLevel`, `cash`, `bank`, `skin`) VALUES
36 (11, 'ENJATZ', '132', '0', '2016-09-11 00:50:21', '2016-09-11 23:36:31', 456, 444, 456456, 52);
37/*!40000 ALTER TABLE `users` ENABLE KEYS */;
38
39
40-- Dumping structure for table fivemp.vehicles
41CREATE TABLE IF NOT EXISTS `vehicles` (
42 `id` int(11) NOT NULL AUTO_INCREMENT,
43 `respawntime` int(11) NOT NULL DEFAULT '0',
44 `personalVehicle` tinyint(4) NOT NULL DEFAULT '0',
45 `owner` varchar(50) NOT NULL DEFAULT '0',
46 `name` varchar(50) NOT NULL DEFAULT '0',
47 `x` float NOT NULL DEFAULT '0',
48 `y` float NOT NULL DEFAULT '0',
49 `z` float NOT NULL DEFAULT '0',
50 `a` float NOT NULL DEFAULT '0',
51 `colorType1` tinyint(4) NOT NULL DEFAULT '0',
52 `colorId0` tinyint(4) NOT NULL DEFAULT '0',
53 `colorType0` tinyint(4) NOT NULL DEFAULT '0',
54 `colorId1` tinyint(4) NOT NULL DEFAULT '0',
55 `plate` varchar(50) NOT NULL DEFAULT 'dme.',
56 `job` int(11) NOT NULL DEFAULT '0',
57 `group` int(11) NOT NULL DEFAULT '0',
58 `rank` int(11) NOT NULL DEFAULT '0',
59 PRIMARY KEY (`id`)
60) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=latin1;
61
62-- Dumping data for table fivemp.vehicles: ~9 rows (approximately)
63/*!40000 ALTER TABLE `vehicles` DISABLE KEYS */;
64INSERT INTO `vehicles` (`id`, `respawntime`, `personalVehicle`, `owner`, `name`, `x`, `y`, `z`, `a`, `colorType1`, `colorId0`, `colorType0`, `colorId1`, `plate`, `job`, `group`, `rank`) VALUES
65 (2, 0, 0, '0', 'Adder', -10.1144, -10.1144, 69.9437, 257.791, 0, 0, 0, 0, '0', 0, 0, 0),
66 (3, 0, 0, '0', 'T20', -76.2741, -112.281, 56.8615, 309.181, 0, 0, 0, 0, '0', 0, 0, 0),
67 (4, 0, 0, '0', 'Zentorno', -82.2987, -111.614, 56.8875, 287.534, 0, 0, 0, 20, '0', 0, 0, 0),
68 (5, 0, 0, '0', 'Adder', -82.2987, -111.614, 56.8874, 288.845, 0, 0, 0, 0, '0', 0, 0, 0),
69 (7, 0, 0, '0', 'T20', -9.52398, -9.52398, 69.8177, 326.577, 0, 0, 0, 0, '0', 0, 0, 0),
70 (8, 0, 0, '0', 'T20', -52.8297, -52.8297, 70.4632, 319.442, 0, 0, 0, 0, '0', 0, 0, 0),
71 (10, 0, 0, '0', 'T20', 61.3484, 61.3484, 67.5199, 199.158, 0, 0, 0, 0, '0', 0, 0, 0),
72 (11, 0, 0, '0', 't20', 41.7501, 233.4, 108.532, 103.161, 0, 0, 0, 0, '0', 0, 0, 0);
73/*!40000 ALTER TABLE `vehicles` ENABLE KEYS */;
74/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
75/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */;
76/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;