From ada9d9980eb6be68f9342699c6c68941c7ce991a Mon Sep 17 00:00:00 2001 From: steinm Date: Tue, 28 Aug 2012 07:43:36 +0000 Subject: [PATCH] - added ENGINE to table definition --- install/create_tables-innodb.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/create_tables-innodb.sql b/install/create_tables-innodb.sql index 030368c09..3bb1bae8b 100644 --- a/install/create_tables-innodb.sql +++ b/install/create_tables-innodb.sql @@ -63,7 +63,7 @@ CREATE TABLE `tblUserPasswordHistory` ( `date` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`id`), CONSTRAINT `tblUserPasswordHistory_user` FOREIGN KEY (`userID`) REFERENCES `tblUsers` (`id`) ON DELETE CASCADE -) DEFAULT CHARSET=utf8; +) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- --------------------------------------------------------