mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 08:06:27 +08:00
Implement the friends data adaptor
This commit is contained in:
5
OpenSim/Data/MySQL/Resources/001_FriendsStore.sql
Normal file
5
OpenSim/Data/MySQL/Resources/001_FriendsStore.sql
Normal file
@@ -0,0 +1,5 @@
|
||||
BEGIN;
|
||||
|
||||
CREATE TABLE `Friends` (`PrincipalID` CHAR(36) NOT NULL, `Friend` VARCHAR(255) NOT NULL, `Flags` VARCHAR(16) NOT NULL DEFAULT 0, `Offered` VARCHAR(32) NOT NULL DEFAULT 0, PRIMARY KEY(`PrincipalID`, `Friend`), KEY(`PrincipalID`));
|
||||
|
||||
COMMIT;
|
||||
Reference in New Issue
Block a user