fix(garage) fixed new garage sql

This commit is contained in:
Benzo
2022-06-09 01:59:30 +02:00
committed by GitHub
parent 2063bab6de
commit 7f28d02989
+3 -1
View File
@@ -359,9 +359,11 @@ CREATE TABLE `owned_vehicles` (
`vehicle` longtext DEFAULT NULL,
`type` varchar(20) NOT NULL DEFAULT 'car',
`job` varchar(20) DEFAULT NULL,
`stored` tinyint(4) NOT NULL DEFAULT 0
`stored` tinyint(4) NOT NULL DEFAULT 0,
`parking` VARCHAR(60) DEFAULT NULL
) ENGINE=InnoDB;
-- --------------------------------------------------------
-- --------------------------------------------------------