CREATE TABLE faq_categories (
 
   id int(11) DEFAULT '0' NOT NULL auto_increment,
 
   title varchar(255) NOT NULL,
 
   PRIMARY KEY (id),
 
   UNIQUE id_2 (id),
 
   KEY id (id)
 
);
 
 
CREATE TABLE faq_questions (
 
   id int(11) DEFAULT '0' NOT NULL auto_increment,
 
   cnum int(11) DEFAULT '0' NOT NULL,
 
   question varchar(255) NOT NULL,
 
   answer text,
 
   PRIMARY KEY (id),
 
   UNIQUE id_2 (id),
 
   KEY id (id)
 
);
 
 
 |