CREATE TABLE communitymenu_communitys ( community_id int(10) unsigned NOT NULL auto_increment, community_name VARCHAR(50) default '', community_author VARCHAR(100) default '', community_Tag VARCHAR(100) default '', community_Location VARCHAR(100) default '', community_info text, community_body text, community_source text, community_website text, community_category int(10) unsigned NOT NULL default '0', community_approved int(10) unsigned NOT NULL default '0', community_posted int(10) unsigned NOT NULL default '0', community_picture varchar(200) default '', PRIMARY KEY (community_id) ) TYPE=MyISAM; CREATE TABLE communitymenu_category ( community_category_id int(10) NOT NULL auto_increment, community_category_name VARCHAR(50) default NULL, community_category_description VARCHAR(250) default NULL, community_category_updated int(10) unsigned NOT NULL default '0', PRIMARY KEY (community_category_id) ) TYPE=MyISAM;