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

This commit is contained in:
Melanie
2009-12-28 19:12:33 +00:00
parent 19a7a8f797
commit 2ed207509b

View File

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