Add the second step of the friends migration to pull data from the old table into the new

slimupdates
Melanie 2009-12-28 19:12:33 +00:00
parent 19a7a8f797
commit 2ed207509b
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
BEGIN;
INSERT INTO Friends (PrincipalID, FriendID, Flags) SELECT ownerID, friendID, friendPerms FROM userfriends;
COMMIT;