Update of /cvsroot/php-blog/serendipity/sql
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2609
Modified Files:
db.sql
Log Message:
unnecessary ',' at the end of images-table breaks insertion of the table
Index: db.sql
===================================================================
RCS file: /cvsroot/php-blog/serendipity/sql/db.sql,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- db.sql 19 Mar 2004 11:05:15 -0000 1.4
+++ db.sql 19 Mar 2004 11:22:46 -0000 1.5
@@ -153,5 +153,5 @@
dimensions_width int(11) not null default '0',
dimensions_height int(11) not null default '0',
date int(11) not null default '0',
- thumbnail_name varchar(255) not null default '',
+ thumbnail_name varchar(255) not null default ''
);
|