PHP Classes

File: schema.faqmanager.sql

Recommend this page to a friend!
  Classes of Andrew Collington   class.faqmanager.php   schema.faqmanager.sql   Download  
File: schema.faqmanager.sql
Role: Configuration script
Content type: text/plain
Description: the MySQL schema for the class
Class: class.faqmanager.php
Author: By
Last change:
Date: 22 years ago
Size: 420 bytes
 

Contents

Class file image Download
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)
);