updating the json schema was a bad idea, now every user setting must be updated to reflect the schema changes
update users set settings = (
SELECT JSON_REPLACE((select settings from users where username='BROKEN'), '$.keybinds',
(select JSON_EXTRACT((select settings from users where username="WORKING"), '$.keybinds') as newkey)
) as new) where username='BROKEN';
updating the json schema was a bad idea, now every user setting must be updated to reflect the schema changes
update users set settings = ( SELECT JSON_REPLACE((select settings from users where username='BROKEN'), '$.keybinds', (select JSON_EXTRACT((select settings from users where username="WORKING"), '$.keybinds') as newkey) ) as new) where username='BROKEN';