aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data
diff options
context:
space:
mode:
authorDiva Canto2013-07-04 09:51:31 -0700
committerDiva Canto2013-07-04 09:51:31 -0700
commit068a3afad9b585399e5422108f8c5074c9e6b33f (patch)
treeda981bfec564cc194aaec7b034f54b70ddb40ba6 /OpenSim/Data
parentRevert "HG Friends: debug an issue where the friends data stored in the DB is... (diff)
downloadopensim-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')
-rw-r--r--OpenSim/Data/MySQL/Resources/FriendsStore.migrations2
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
14COMMIT; 14COMMIT;
15 15