From: Greg Sabino Mullane Date: Sat, 22 Jul 2006 15:12:27 +0000 (+0000) Subject: Explicitly make user_newtalk InnoDB. X-Git-Tag: 1.31.0-rc.0~56168 X-Git-Url: http://git.cyclocoop.org/%22.%24image2.%22?a=commitdiff_plain;h=4838f19f971c6afb68fa005a9ae247ce7b7807e6;p=lhc%2Fweb%2Fwiklou.git Explicitly make user_newtalk InnoDB. --- diff --git a/maintenance/tables.sql b/maintenance/tables.sql index 044ccee57b..38fae7a252 100644 --- a/maintenance/tables.sql +++ b/maintenance/tables.sql @@ -23,7 +23,7 @@ -- in early 2002 after a lot of trouble with the fields -- auto-updating. -- --- The PostgreSQL backend uses DATETIME fields for timestamps, +-- The Postgres backend uses DATETIME fields for timestamps, -- and we will migrate the MySQL definitions at some point as -- well. -- @@ -152,7 +152,8 @@ CREATE TABLE /*$wgDBprefix*/user_newtalk ( user_ip varchar(40) NOT NULL default '', INDEX user_id (user_id), INDEX user_ip (user_ip) -); + +) TYPE=InnoDB; --