Skip to content

Commit

Permalink
fix(sql): typo
Browse files Browse the repository at this point in the history
* Update vehshop.sql

typo

* Update vehshop.sql

* Update vehshop.sql

---------

Co-authored-by: Antony <[email protected]>
  • Loading branch information
MisterBuzzee and TonybynMp4 authored Mar 29, 2024
1 parent 7529913 commit fb18e88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vehshop.sql
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ CREATE TABLE IF NOT EXISTS `vehicle_financing` (
`paymentsleft` int(11) DEFAULT NULL,
`financetime` int(11) DEFAULT NULL,
PRIMARY KEY (`vehicleId`),
FOREIGN KEY `vehicleId` (`vehicleId`) REFERENCES `player_vehicles` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
FOREIGN KEY `vehicleId` (`vehicleId`) REFERENCES `player_vehicles` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

0 comments on commit fb18e88

Please sign in to comment.