diff options
author | Diva Canto | 2011-06-11 09:36:57 -0700 |
---|---|---|
committer | Diva Canto | 2011-06-11 09:36:57 -0700 |
commit | d99277939750247ad100395394720c73a3580c72 (patch) | |
tree | 2ec75149a392e38c633b1e62bd035a37c9b2f39b | |
parent | Added a Sleep in between each site call, to slow the xml-rpc requests down. (diff) | |
download | opensim-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.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 7848e49..55d82ec 100644 --- a/OpenSim/Data/MySQL/Resources/FriendsStore.migrations +++ b/OpenSim/Data/MySQL/Resources/FriendsStore.migrations | |||
@@ -25,8 +25,8 @@ COMMIT; | |||
25 | 25 | ||
26 | BEGIN; | 26 | BEGIN; |
27 | 27 | ||
28 | ALTER TABLE `Friends` MODIFY COLUMN PrincipalID varchar(255) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000'; | ||
28 | ALTER TABLE `Friends` DROP PRIMARY KEY; | 29 | ALTER TABLE `Friends` DROP PRIMARY KEY; |
29 | ALTER TABLE `Friends` ADD PRIMARY KEY(PrincipalID(36), Friend(36)); | 30 | ALTER TABLE `Friends` ADD PRIMARY KEY(PrincipalID(36), Friend(36)); |
30 | ALTER TABLE `Friends` MODIFY COLUMN PrincipalID varchar(255) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000'; | ||
31 | 31 | ||
32 | COMMIT; | 32 | COMMIT; |