CREATE TABLE IF NOT EXISTS `accounts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(50) NOT NULL,
`password` text NOT NULL,
`admin` int(11) NOT NULL DEFAULT \'0\',
`skin` int(11) NOT NULL DEFAULT \'15\',
`position` varchar(500) NOT NULL DEFAULT \'[ [ 1473.3486328125, -1705.2470703125, 14.046875, 226.2861022949219 ] ]\',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_hungarian_ci;