You do have a backup?
This is from my development server its empty apart from the 2 airports but it will give you the table back,
--
-- Table structure for table `phpvms_airports`
--
CREATE TABLE IF NOT EXISTS `phpvms_airports` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`icao` varchar(5) NOT NULL DEFAULT '',
`name` text NOT NULL,
`country` varchar(50) NOT NULL DEFAULT '',
`lat` float NOT NULL DEFAULT '0',
`lng` float NOT NULL DEFAULT '0',
`hub` smallint(6) NOT NULL DEFAULT '0',
`fuelprice` float NOT NULL DEFAULT '0',
`chartlink` text NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `icao` (`icao`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
--
-- Dumping data for table `phpvms_airports`
--
INSERT INTO `phpvms_airports` (`id`, `icao`, `name`, `country`, `lat`, `lng`, `hub`, `fuelprice`, `chartlink`) VALUES
(1, 'KJFK', 'Kennedy International', 'USA', 40.6398, -73.7787, 0, 0, ''),
(2, 'EGKK', 'Gatwick Airport', 'United Kingdom', 51.1481, -0.190278, 1, 0, '');