Update of /cvsroot/php-blog/jBlog
In directory sc8-pr-cvs1:/tmp/cvs-serv10375
Modified Files:
db.sql
Log Message:
comment type defaults to regular, update schemas accordingly.
Index: db.sql
===================================================================
RCS file: /cvsroot/php-blog/jBlog/db.sql,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- db.sql 11 Mar 2003 03:04:16 -0000 1.14
+++ db.sql 11 Mar 2003 18:55:23 -0000 1.15
@@ -26,7 +26,7 @@
url varchar(200) default null,
ip varchar(15) default null,
body text,
- type enum('trackback','regular') default null,
+ type enum('trackback','regular') default 'regular',
primary key (id),
fulltext key body (body)
) type=myisam;
|