Here's an example of the name MySQL generates if you omit it. This is from SHOW CREATE TABLE:
Code:
CREATE TABLE `customers` (
`custid` int(11) NOT NULL AUTO_INCREMENT,
`coid` int(11) DEFAULT NULL,
`custname` varchar(100) DEFAULT NULL,
PRIMARY KEY (`custid`),
KEY `coid` (`coid`),
CONSTRAINT `customers_ibfk_1` FOREIGN KEY (`coid`) REFERENCES `countries` (`coid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1