From: ethem Date: Thu, 23 Mar 2006 14:26:18 +0000 (+0000) Subject: Table type fix. ENGINE changed to TYPE. Old mysql version issue. X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=2eaa2898839d661a768fd5a990dc6e88e0ebcc01;p=moodle.git Table type fix. ENGINE changed to TYPE. Old mysql version issue. --- diff --git a/enrol/authorize/db/mysql.sql b/enrol/authorize/db/mysql.sql index afbe6a525e..c44e84653d 100755 --- a/enrol/authorize/db/mysql.sql +++ b/enrol/authorize/db/mysql.sql @@ -14,7 +14,7 @@ CREATE TABLE `prefix_enrol_authorize` ( KEY `courseid` (`courseid`), KEY `userid` (`userid`), KEY `status` (`status`) -) ENGINE=MyISAM COMMENT='Holds all known information about authorize.net transactions'; +) TYPE=MyISAM COMMENT='Holds all known information about authorize.net transactions'; CREATE TABLE `prefix_enrol_authorize_refunds` ( `id` int(10) unsigned NOT NULL auto_increment, @@ -25,4 +25,4 @@ CREATE TABLE `prefix_enrol_authorize_refunds` ( `settletime` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`id`), KEY `orderid` (`orderid`) -) ENGINE=MyISAM; +) TYPE=MyISAM COMMENT='Authorize.net refunds';