summaryrefslogtreecommitdiff
path: root/database
diff options
context:
space:
mode:
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 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,