Update of /cvsroot/php-blog/jBlog
In directory sc8-pr-cvs1:/tmp/cvs-serv2333
Modified Files:
db.sql
Log Message:
**** DO THIS! ***
(or die!)
alter table jBlog_config change value value text not null;
Index: db.sql
===================================================================
RCS file: /cvsroot/php-blog/jBlog/db.sql,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- db.sql 11 Mar 2003 02:44:32 -0000 1.13
+++ db.sql 11 Mar 2003 03:04:16 -0000 1.14
@@ -85,7 +85,7 @@
create table {PREFIX}config (
name varchar(255) not null primary key,
- value varchar(255) not null
+ value text not null
);
CREATE TABLE {PREFIX}suppress (
|