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

This commit is contained in:
Diva Canto
2013-07-04 09:51:31 -07:00
parent 5eb78aad96
commit 068a3afad9

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;