If you already have vms_business table, but you don't have history column in your table, you have to import it using this query:
ALTER TABLE `vms_business` ADD COLUMN `history` longtext DEFAULT '{}';
3. Environment Requirements
1
Gamebuild
Ensure your game build is at least 3095 for compatibility and optimal resource functionality.
Go to your server.cfg and then enter the following line, or if you already have lower game build, set this one.
sv_enforceGameBuild 3095
4. Start Resource
To start a resource in your server.cfg, ensure that it begins after your framework has been initiated. For instance, if you are using a framework like es_extended, you should start resource after it, like so:
start [core] # For example, here is your framework (esx/qb-core)
# Here you run your other resources like esx_policejob etc.
# VMS Resources
start vms_garagesv2
Ensure there are no syntax errors or incorrect paths in your server.cfg.