Update of /cvsroot/php-blog/serendipity/sql
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22376/sql
Modified Files:
db.sql
Log Message:
Cration of new database needs parentid on category table
Index: db.sql
===================================================================
RCS file: /cvsroot/php-blog/serendipity/sql/db.sql,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- db.sql 7 Jun 2004 14:22:48 -0000 1.10
+++ db.sql 10 Jun 2004 19:34:32 -0000 1.11
@@ -52,7 +52,8 @@
categoryid int(11) default null,
isdraft {BOOLEAN},
allow_comments {BOOLEAN},
- last_modified int(10) {UNSIGNED} default null
+ last_modified int(10) {UNSIGNED} default null,
+ parentid INT(11) DEFAULT '0' NOT NULL
);
CREATE {FULLTEXT} INDEX entry on {PREFIX}entries (title,body,extended);
|