Thats all I can think of that would be useful. If you need more info to help me out I’d be happy to oblige. Any help in this matter would be greatly appreciated!
Not sure where you got that sql from, but the correct one looks like this :
CREATE TABLE IF NOT EXISTS `users` (
`identifier` varchar(255) CHARACTER SET utf8mb4 NOT NULL DEFAULT '',
`group` varchar(50) NOT NULL DEFAULT '0',
`permission_level` int(11) NOT NULL DEFAULT '0',
`money` double NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;