Ho messo degli interi

Ecco il dump delle tabelle che ho creato:

codice:
DROP TABLE IF EXISTS `calendario`;
CREATE TABLE `calendario` (
  `id` int(11) NOT NULL auto_increment,
  `squadra_home` int(11) NOT NULL,
  `squadra_visitor` int(11) NOT NULL,
  `point_home` int(11) NOT NULL,
  `point_visitor` int(11) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;

DROP TABLE IF EXISTS `squadre`;
CREATE TABLE `squadre` (
  `id` int(11) NOT NULL auto_increment,
  `nome` varchar(100) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;