when i try to create a database with the following statement
c.prepareStatement("CREATE TABLE IF NOT EXISTS `verify` (" +
"`id` INT NOT NULL AUTO_INCREMENT UNIQUE," +
"`uuid` VARCHAR(255) NOT NULL UNIQUE," +
"`ts` INT NOT NULL UNIQUE," +
"PRIMARY KEY (`id`)" +
");").execute();
i get this Error:
com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Specified key was too long; max key length is 767 bytes