summaryrefslogtreecommitdiff
path: root/updates/2.00-to-x.xx.sql
diff options
context:
space:
mode:
Diffstat (limited to 'updates/2.00-to-x.xx.sql')
-rw-r--r--updates/2.00-to-x.xx.sql10
1 files changed, 10 insertions, 0 deletions
diff --git a/updates/2.00-to-x.xx.sql b/updates/2.00-to-x.xx.sql
index 2cf722f72..3e17e9f46 100644
--- a/updates/2.00-to-x.xx.sql
+++ b/updates/2.00-to-x.xx.sql
@@ -144,3 +144,13 @@ ALTER TABLE users DROP history;
# 19/05/2001
DROP TABLE crons;
+
+# 25/05/2001 - TEMPORARY - UNDER HEAVY CHANGE -
+
+CREATE TABLE entry (
+ eid int(10) unsigned DEFAULT '0' NOT NULL auto_increment,
+ name varchar(32) DEFAULT '' NOT NULL,
+ keyword varchar(255) DEFAULT '' NOT NULL,
+ collection varchar(32) DEFAULT '' NOT NULL,
+ PRIMARY KEY (eid)
+);