]> git.mjollnir.org Git - moodle.git/commitdiff
Table type fix. ENGINE changed to TYPE. Old mysql version issue.
authorethem <ethem>
Thu, 23 Mar 2006 14:26:18 +0000 (14:26 +0000)
committerethem <ethem>
Thu, 23 Mar 2006 14:26:18 +0000 (14:26 +0000)
enrol/authorize/db/mysql.sql

index afbe6a525e32ea1e1fa5401e08df1a395ed96251..c44e84653d13bcc1b67f43fcecbe29d9bf585188 100755 (executable)
@@ -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';