Table type fix. ENGINE changed to TYPE. Old mysql version issue.
This commit is contained in:
@@ -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';
|
||||
|
||||
Reference in New Issue
Block a user