Installation
This script is designed to work seamlessly with ESX and QBCore/QBOX frameworks. The configuration is the same for all frameworks and requires no additional steps.
Insert SQL
You can use the built-in Config.AutoRunSQL feature included in the script to automatically set up the database, or you can copy the provided SQL code and run it manually on your database.
CREATE TABLE `bz_jobs` (
`citizenid` VARCHAR(50) NOT NULL COLLATE 'utf8mb4_general_ci',
`lastjob` LONGTEXT NULL DEFAULT NULL COLLATE 'utf8mb4_general_ci',
PRIMARY KEY (`citizenid`) USING BTREE
) COLLATE='utf8mb4_general_ci';
Last updated