HG Friends: migration #3 is failing on some installations of MySql. Setting the table to InnoDB seems to fix the problem.

cpu-performance
Diva Canto 2013-07-04 09:51:31 -07:00
parent 5eb78aad96
commit 068a3afad9
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ CREATE TABLE `Friends` (
`Offered` VARCHAR(32) NOT NULL DEFAULT 0,
PRIMARY KEY(`PrincipalID`, `Friend`),
KEY(`PrincipalID`)
);
) ENGINE=InnoDB;
COMMIT;