pauamma: Cartooney crab wearing hot pink and acid green facemask holding drink with straw (Default)
Res facta quae tamen fingi potuit ([personal profile] pauamma) wrote in [site community profile] changelog2009-04-22 08:17 am

[dw-free] Unbreak update-db --innodb (reported by rho in IRC)

[commit: http://hg.dwscoalition.org/dw-free/rev/763971242f25]

Unbreak update-db --innodb (reported by rho in IRC)

Patch by [personal profile] pauamma.

Files modified:
  • bin/upgrading/update-db-general.pl
--------------------------------------------------------------------------------
diff -r 446f75a17f85 -r 763971242f25 bin/upgrading/update-db-general.pl
--- a/bin/upgrading/update-db-general.pl	Wed Apr 22 07:29:20 2009 +0000
+++ b/bin/upgrading/update-db-general.pl	Wed Apr 22 08:16:13 2009 +0000
@@ -3192,7 +3192,7 @@ CREATE TABLE pp_tokens (
     primary key (ppid),
     unique (cartid),
     index (token)
-);
+)
 EOC
 
 register_tablecreate('pp_log', <<'EOC');
@@ -3203,7 +3203,7 @@ CREATE TABLE pp_log (
     res_content text not null,
 
     index (ppid)
-);
+)
 EOC
 
 register_tablecreate('pp_trans', <<'EOC');
@@ -3229,7 +3229,7 @@ CREATE TABLE pp_trans (
 
     index (ppid),
     index (cartid)
-);
+)
 EOC
 
 
--------------------------------------------------------------------------------