Added FriendsData to both Null storage and SQLite. Untested.

This commit is contained in:
Diva Canto
2010-02-28 16:09:06 -08:00
parent 86c621fdc7
commit 774958bbbf
7 changed files with 186 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
BEGIN TRANSACTION;
INSERT INTO `Friends` SELECT `ownerID`, `friendID`, `friendPerms`, 0 FROM `userfriends`;
COMMIT;