aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorMelanie2009-12-28 19:12:33 +0000
committerMelanie2009-12-28 19:12:33 +0000
commit2ed207509b0df83d1aaf49919df5978f6f70f934 (patch)
tree6d3abbc9b80f5b982c500198ab9eb5bbca679eeb
parentMerge branch 'presence-refactor' of ssh://diva@opensimulator.org/var/git/open... (diff)
downloadopensim-SC_OLD-2ed207509b0df83d1aaf49919df5978f6f70f934.zip
opensim-SC_OLD-2ed207509b0df83d1aaf49919df5978f6f70f934.tar.gz
opensim-SC_OLD-2ed207509b0df83d1aaf49919df5978f6f70f934.tar.bz2
opensim-SC_OLD-2ed207509b0df83d1aaf49919df5978f6f70f934.tar.xz
Add the second step of the friends migration to pull data from the old table into the new
-rw-r--r--OpenSim/Data/MySQL/Resources/002_Friends.sql5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/002_Friends.sql b/OpenSim/Data/MySQL/Resources/002_Friends.sql
new file mode 100644
index 0000000..5ff6438
--- /dev/null
+++ b/OpenSim/Data/MySQL/Resources/002_Friends.sql
@@ -0,0 +1,5 @@
1BEGIN;
2
3INSERT INTO Friends (PrincipalID, FriendID, Flags) SELECT ownerID, friendID, friendPerms FROM userfriends;
4
5COMMIT;