Add the migration for friends and guard the presence Report function

This commit is contained in:
Melanie
2009-12-28 18:52:24 +00:00
parent 9a8f6c79c9
commit 397a296492
2 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
BEGIN;
CREATE TABLE `Friends` (
`PrincipalID` CHAR(36) NOT NULL,
`FriendID` VARCHAR(255) NOT NULL,
`Flags` CHAR(16) NOT NULL DEFAULT '0'
) ENGINE=InnoDB;
COMMIT;