You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by pa...@apache.org on 2004/05/22 16:55:33 UTC

svn commit: rev 20213 - incubator/spamassassin/trunk/sql

Author: parker
Date: Sat May 22 07:55:32 2004
New Revision: 20213

Modified:
   incubator/spamassassin/trunk/sql/bayes_mysql.sql
Log:
Bug 3377: Remove trailing comma in table create

Modified: incubator/spamassassin/trunk/sql/bayes_mysql.sql
==============================================================================
--- incubator/spamassassin/trunk/sql/bayes_mysql.sql	(original)
+++ incubator/spamassassin/trunk/sql/bayes_mysql.sql	Sat May 22 07:55:32 2004
@@ -17,7 +17,7 @@
   id int(11) NOT NULL default '0',
   msgid varchar(200) binary NOT NULL default '',
   flag char(1) NOT NULL default '',
-  PRIMARY KEY  (id,msgid),
+  PRIMARY KEY  (id,msgid)
 ) TYPE=MyISAM;
 
 CREATE TABLE bayes_token (