aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--data/db.struct9
1 files changed, 8 insertions, 1 deletions
diff --git a/data/db.struct b/data/db.struct
index 663ed13..86a843a 100644
--- a/data/db.struct
+++ b/data/db.struct
@@ -131,4 +131,11 @@ CREATE TABLE pending_links(
word varchar(128) binary, # REL 4
);
-
+CREATE TABLE news(
+ ident int(32) not null auto_increment,
+ date datetime not null,
+ header varchar(255),
+ text blob,
+ UNIQUE(ident),
+ INDEX(date)
+);

Return to:

Send suggestions and report system problems to the System administrator.