Adjusting Required Licenses
// The following SQL code will change the license.
// Change 'NEW_LICENSE_NAME' to your license name that you are using.
// Change 'drive_b' to the license you want to remove, e.g. 'drive_b', 'practical_plane'.
UPDATE vehicles SET `requiredLicense` = 'NEW_LICENSE_NAME' WHERE `requiredLicense` = 'drive_b';// The following SQL code will remove all required licenses.
UPDATE vehicles SET `requiredLicense` = NULL WHERE `requiredLicense` IS NOT NULL;// The following SQL code will remove the specific license.
// Change 'drive_b' to the license you want to remove, e.g. 'drive_b', 'practical_plane'.
UPDATE vehicles SET `requiredLicense` = NULL WHERE `requiredLicense` = 'drive_b';Last updated