--
-- Table structure for table `locations`
--
CREATE TABLE IF NOT EXISTS `locations` (
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`id_county` smallint(5) unsigned NOT NULL,
`location` varchar(100) NOT NULL,
`address` varchar(255) NOT NULL,
`phone` varchar(10) NOT NULL,
`city` varchar(50) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|