diff options
author | Diva Canto | 2013-07-04 09:51:31 -0700 |
---|---|---|
committer | Diva Canto | 2013-07-04 09:51:31 -0700 |
commit | 068a3afad9b585399e5422108f8c5074c9e6b33f (patch) | |
tree | da981bfec564cc194aaec7b034f54b70ddb40ba6 /OpenSim/Data/MySQL | |
parent | Revert "HG Friends: debug an issue where the friends data stored in the DB is... (diff) | |
download | opensim-SC_OLD-068a3afad9b585399e5422108f8c5074c9e6b33f.zip opensim-SC_OLD-068a3afad9b585399e5422108f8c5074c9e6b33f.tar.gz opensim-SC_OLD-068a3afad9b585399e5422108f8c5074c9e6b33f.tar.bz2 opensim-SC_OLD-068a3afad9b585399e5422108f8c5074c9e6b33f.tar.xz |
HG Friends: migration #3 is failing on some installations of MySql. Setting the table to InnoDB seems to fix the problem.
Diffstat (limited to 'OpenSim/Data/MySQL')
-rw-r--r-- | OpenSim/Data/MySQL/Resources/FriendsStore.migrations | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/MySQL/Resources/FriendsStore.migrations b/OpenSim/Data/MySQL/Resources/FriendsStore.migrations index 55d82ec..5faf956 100644 --- a/OpenSim/Data/MySQL/Resources/FriendsStore.migrations +++ b/OpenSim/Data/MySQL/Resources/FriendsStore.migrations | |||
@@ -9,7 +9,7 @@ CREATE TABLE `Friends` ( | |||
9 | `Offered` VARCHAR(32) NOT NULL DEFAULT 0, | 9 | `Offered` VARCHAR(32) NOT NULL DEFAULT 0, |
10 | PRIMARY KEY(`PrincipalID`, `Friend`), | 10 | PRIMARY KEY(`PrincipalID`, `Friend`), |
11 | KEY(`PrincipalID`) | 11 | KEY(`PrincipalID`) |
12 | ); | 12 | ) ENGINE=InnoDB; |
13 | 13 | ||
14 | COMMIT; | 14 | COMMIT; |
15 | 15 | ||