Setting up table removal

Since function to allow character removal is active, you need to fulfill the database table names along with identifier. To do that go to /shared/config.lua.

Then simply add the tables you'd like to remove the data from. Example with owned_vehicles table:

Config.DB_TablesToRemove = { 
    {
        table = 'owned_vehicles',
        identifierColumn = 'owner',
    }
}

And that's it!

Last updated