mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-09-01 18:01:56 +00:00
10 lines
240 B
SQL
10 lines
240 B
SQL
USE `essentialmode`;
|
|
|
|
INSERT INTO `licenses` (`type`, `label`) VALUES
|
|
('boat', 'Boat License')
|
|
;
|
|
|
|
ALTER TABLE `owned_vehicles`
|
|
ADD COLUMN `vehicleType` VARCHAR(20) NULL DEFAULT 'car',
|
|
ADD COLUMN `stored` TINYINT(1) NOT NULL DEFAULT '1'
|
|
; |