aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDiva Canto2011-06-11 09:36:57 -0700
committerDiva Canto2011-06-11 09:36:57 -0700
commitd99277939750247ad100395394720c73a3580c72 (patch)
tree2ec75149a392e38c633b1e62bd035a37c9b2f39b
parentAdded a Sleep in between each site call, to slow the xml-rpc requests down. (diff)
downloadopensim-SC_OLD-d99277939750247ad100395394720c73a3580c72.zip
opensim-SC_OLD-d99277939750247ad100395394720c73a3580c72.tar.gz
opensim-SC_OLD-d99277939750247ad100395394720c73a3580c72.tar.bz2
opensim-SC_OLD-d99277939750247ad100395394720c73a3580c72.tar.xz
Switched order of SQL statements in Friends migration -- resulted in the wrong key
-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 7848e49..55d82ec 100644
--- a/OpenSim/Data/MySQL/Resources/FriendsStore.migrations
+++ b/OpenSim/Data/MySQL/Resources/FriendsStore.migrations
@@ -25,8 +25,8 @@ COMMIT;
25 25
26BEGIN; 26BEGIN;
27 27
28ALTER TABLE `Friends` MODIFY COLUMN PrincipalID varchar(255) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000';
28ALTER TABLE `Friends` DROP PRIMARY KEY; 29ALTER TABLE `Friends` DROP PRIMARY KEY;
29ALTER TABLE `Friends` ADD PRIMARY KEY(PrincipalID(36), Friend(36)); 30ALTER TABLE `Friends` ADD PRIMARY KEY(PrincipalID(36), Friend(36));
30ALTER TABLE `Friends` MODIFY COLUMN PrincipalID varchar(255) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000';
31 31
32COMMIT; 32COMMIT;