ed
This commit is contained in:
parent
1ed76cfb9b
commit
6c91401253
15 changed files with 1112 additions and 0 deletions
|
@ -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`)
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue