Update of /cvsroot/php-blog/serendipity/sql
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19313
Modified Files:
db.sql
Log Message:
Fixed the Postgresql install bug. Will fix the script now to ignore case on int replacement.
Index: db.sql
===================================================================
RCS file: /cvsroot/php-blog/serendipity/sql/db.sql,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- db.sql 18 Jun 2004 09:04:39 -0000 1.14
+++ db.sql 14 Jul 2004 02:45:37 -0000 1.15
@@ -1,3 +1,12 @@
+####
+#### Important notes:
+#### If you make modifications (additions, subtractions), please
+#### make the appropriate change in the db_update files. If you don't
+#### know the syntax for a different database, e-mail the list for
+#### help.
+####
+####
+
#
# Table structure for table '{PREFIX}authors'
#
@@ -153,7 +162,7 @@
authorid int(11) default NULL,
category_left int(11) default '0',
category_right int(11) default '0',
- parentid INT(11) DEFAULT '0' NOT NULL
+ parentid int(11) DEFAULT '0' NOT NULL
);
CREATE TABLE {PREFIX}images (
|