mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-28 23:01:26 +00:00
refactor(SQL/legacy): Add primary key to vehicles table
This commit is contained in:
+3
-1
@@ -427,10 +427,12 @@ CREATE TABLE `user_licenses` (
|
||||
--
|
||||
|
||||
CREATE TABLE `vehicles` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`name` varchar(60) NOT NULL,
|
||||
`model` varchar(60) NOT NULL,
|
||||
`price` int(11) NOT NULL,
|
||||
`category` varchar(60) DEFAULT NULL
|
||||
`category` varchar(60) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB;
|
||||
|
||||
--
|
||||
|
||||
Reference in New Issue
Block a user