Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1:/tmp/cvs-serv21311
Modified Files:
db.sql
Log Message:
autoincrement can only be used in conjunction with primary key on mysql
Index: db.sql
===================================================================
RCS file: /cvsroot/php-blog/serendipity/db.sql,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- db.sql 25 Jul 2003 01:03:18 -0000 1.19
+++ db.sql 5 Aug 2003 14:32:35 -0000 1.20
@@ -56,7 +56,7 @@
create table {PREFIX}references (
id {AUTOINCREMENT} {PRIMARY},
- entry_id {AUTOINCREMENT},
+ entry_id int(10) {UNSIGNED} not null default '0',
link text,
name text
);
|