This commit is contained in:
Nordi98 2025-07-01 07:06:04 +02:00
parent 1ed76cfb9b
commit 6c91401253
15 changed files with 1112 additions and 0 deletions

View file

@ -0,0 +1,7 @@
CREATE TABLE IF NOT EXISTS `vehicle_trackers` (
`serialNumber` varchar(11) NOT NULL,
`vehiclePlate` varchar(11) NOT NULL,
`startedAt` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
UNIQUE KEY `serialNumber` (`serialNumber`),
KEY `vehiclePlate` (`vehiclePlate`)
);