From 38806b4a39a6bdfc9d4a09f86b7bbaf0173c298d Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sat, 7 Apr 2001 15:02:28 +0000 Subject: - fixed bug in common.inc: throttle() - streamlined method invocation in node.inc - added node_status() function to modules - added NEW (mostly static) page module - added NEW settings module --- database/database.mysql | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'database/database.mysql') diff --git a/database/database.mysql b/database/database.mysql index 3ad1199ac..e2aed1caf 100644 --- a/database/database.mysql +++ b/database/database.mysql @@ -168,6 +168,15 @@ CREATE TABLE node ( PRIMARY KEY (nid) ); +DROP TABLE IF EXISTS page; +CREATE TABLE page ( + lid int(10) unsigned DEFAULT '0' NOT NULL auto_increment, + nid int(10) unsigned DEFAULT '0' NOT NULL, + body text NOT NULL, + format tinyint(2) DEFAULT '0' NOT NULL, + PRIMARY KEY (lid) +); + DROP TABLE IF EXISTS sections; CREATE TABLE sections ( name varchar(64) DEFAULT '' NOT NULL, -- cgit v1.2.3