From 397a29649203513a4ef24c04e06aace43e02b367 Mon Sep 17 00:00:00 2001 From: Melanie Date: Mon, 28 Dec 2009 18:52:24 +0000 Subject: Add the migration for friends and guard the presence Report function --- OpenSim/Data/MySQL/Resources/001_Friends.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 OpenSim/Data/MySQL/Resources/001_Friends.sql (limited to 'OpenSim/Data/MySQL/Resources') diff --git a/OpenSim/Data/MySQL/Resources/001_Friends.sql b/OpenSim/Data/MySQL/Resources/001_Friends.sql new file mode 100644 index 0000000..e158a2c --- /dev/null +++ b/OpenSim/Data/MySQL/Resources/001_Friends.sql @@ -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; -- cgit v1.1