Table type fix. ENGINE changed to TYPE. Old mysql version issue.

This commit is contained in:
ethem
2006-03-23 14:26:18 +00:00
parent 5bf3aee8bb
commit 2eaa289883
+2 -2
View File
@@ -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';