Update of /cvsroot/php-blog/serendipity/sql
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19915
Modified Files:
db.sql
Log Message:
schema was missing 'thumbnail_name'
Index: db.sql
===================================================================
RCS file: /cvsroot/php-blog/serendipity/sql/db.sql,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- db.sql 29 Feb 2004 19:44:04 -0000 1.1
+++ db.sql 3 Mar 2004 13:55:34 -0000 1.2
@@ -150,5 +150,6 @@
size int(11) not null default '0',
dimensions_width int(11) not null default '0',
dimensions_height int(11) not null default '0',
- date int(11) not null default '0'
+ date int(11) not null default '0',
+ thumbnail_name varchar(255) not null default '',
);
|