summaryrefslogtreecommitdiff
path: root/database
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-03-03 15:31:51 +0000
committerDries Buytaert <dries@buytaert.net>2001-03-03 15:31:51 +0000
commitecc651d83d57685eb5d7b5d6c1084815474a0606 (patch)
treea8a3b755b37fa39850b2087fb457dd744b3f4941 /database
parentdba73421831e3cf848b2ce9732a2fef666e5566e (diff)
downloadbrdo-ecc651d83d57685eb5d7b5d6c1084815474a0606.tar.gz
brdo-ecc651d83d57685eb5d7b5d6c1084815474a0606.tar.bz2
- added a new faq module with administration interface
Diffstat (limited to 'database')
-rw-r--r--database/database.mysql9
1 files changed, 9 insertions, 0 deletions
diff --git a/database/database.mysql b/database/database.mysql
index 792edd7ab..7879bc379 100644
--- a/database/database.mysql
+++ b/database/database.mysql
@@ -95,6 +95,15 @@ CREATE TABLE drupals (
PRIMARY KEY (id)
);
+CREATE TABLE faqs (
+ id int(11) DEFAULT '0' NOT NULL auto_increment,
+ question varchar(255) DEFAULT '' NOT NULL,
+ answer text NOT NULL,
+ weight tinyint(3) DEFAULT '0' NOT NULL,
+ UNIQUE question (question),
+ PRIMARY KEY (id)
+);
+
CREATE TABLE headlines (
id int(11) DEFAULT '0' NOT NULL,
title varchar(255) DEFAULT '' NOT NULL,