- added ENGINE to table definition

This commit is contained in:
steinm 2012-08-28 07:43:36 +00:00
parent 106a0bfce8
commit ada9d9980e

View File

@ -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;
-- --------------------------------------------------------