From 2eaa2898839d661a768fd5a990dc6e88e0ebcc01 Mon Sep 17 00:00:00 2001 From: ethem Date: Thu, 23 Mar 2006 14:26:18 +0000 Subject: [PATCH] Table type fix. ENGINE changed to TYPE. Old mysql version issue. --- enrol/authorize/db/mysql.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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'; -- 2.39.5