CREATE TABLE IF NOT EXISTS `restaurants` (
`id` int(1) NOT NULL AUTO_INCREMENT,
`appetizers_id` int(1) NOT NULL,
`restaurantname` varchar(255) NOT NULL,
`image` varchar(100) DEFAULT NULL,
`foodtype` varchar(50) NOT NULL,
`delivery` int(1) NOT NULL,
`eatin` int(1) NOT NULL,
`wifi` int(1) NOT NULL,
`buffet` int(1) NOT NULL,
`tv` int(1) NOT NULL,
`parking` int(1) NOT NULL,
`catering` int(1) NOT NULL,
`takeout` int(1) NOT NULL,
`zip` varchar(5) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=177 ;
Bookmarks