Skip to content

Commit

Permalink
Table type fix. ENGINE changed to TYPE. Old mysql version issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
ethem committed Mar 23, 2006
1 parent 5bf3aee commit 2eaa289
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions enrol/authorize/db/mysql.sql
Expand Up @@ -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,
Expand All @@ -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';

0 comments on commit 2eaa289

Please sign in to comment.