-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathesx_ownedcarthiefDE.sql
25 lines (21 loc) · 983 Bytes
/
esx_ownedcarthiefDE.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 'Alarmsystemstufe' AFTER `owner`;
ALTER TABLE `owned_vehicles` ADD `alarmactive` int(1) NOT NULL DEFAULT '0' COMMENT 'Alarmsystemstatus' AFTER `security`;
CREATE TABLE `pawnshop_vehicles` (
`owner` varchar(30) 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', 'Hammer- und Drahtschneider', 1),
('unlockingtool', 'Einbruchswerkzeuge (Illegal)', 1),
('jammer', 'Signalstörer (illegal)', 1),
('alarminterface', "Schnittstelle für Alarmsysteme", 1),
('alarm1', "Grundalarmsystem mit Lautsprecher", 1),
('alarm2', "Notfallverbindungsmodul", 1),
('alarm3', "GPS Continuous Positioning Module", 1)
;