-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathesx_ownedcarthiefFR.sql
25 lines (21 loc) · 1014 Bytes
/
esx_ownedcarthiefFR.sql
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
USE `essentialmode`;
ALTER TABLE `owned_vehicles` ADD `security` int(1) NOT NULL DEFAULT '0' COMMENT 'Alarm system level' AFTER `owner`;
ALTER TABLE `owned_vehicles` ADD `alarmactive` int(1) NOT NULL DEFAULT '0' COMMENT 'Alarm system state' AFTER `security`;
CREATE TABLE `pawnshop_vehicles` (
`owner` varchar(40) DEFAULT NULL,
`security` int(1) NOT NULL DEFAULT '0' COMMENT 'Alarm system state',
`plate` varchar(12) NOT NULL,
`vehicle` longtext,
`price` int(15) NOT NULL,
`expiration` int(15) NOT NULL,
PRIMARY KEY (`plate`)
)ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT INTO `items` (name, label, weight) VALUES
('hammerwirecutter', 'Marteau & coupe fil', 1),
('unlockingtool', 'Outils de cambriolage (Illégal)', 1),
('jammer', 'Brouilleur de Signal (Illégal)', 1),
('alarminterface', "Interface de système d'alarm", 1),
('alarm1', "système d'alarme de base avec haut-parleur", 1),
('alarm2', "module de liaison avec les urgences", 1),
('alarm3', "module de positionnement continu GPS", 1)
;