mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 17:32:42 +08:00
MSSQL Additions for Presence Refactor branch. Most functionality tested and works, some outstanding issues around login location and border crossings on y axis.
Signed-off-by: Melanie <melanie@t-data.com>
This commit is contained in:
11
OpenSim/Data/MSSQL/Resources/001_FriendsStore.sql
Normal file
11
OpenSim/Data/MSSQL/Resources/001_FriendsStore.sql
Normal file
@@ -0,0 +1,11 @@
|
||||
BEGIN TRANSACTION
|
||||
|
||||
CREATE TABLE [Friends] (
|
||||
[PrincipalID] uniqueidentifier NOT NULL,
|
||||
[FriendID] varchar(255) NOT NULL,
|
||||
[Flags] char(16) NOT NULL DEFAULT '0',
|
||||
[Offered] varchar(32) NOT NULL DEFAULT 0)
|
||||
ON [PRIMARY]
|
||||
|
||||
|
||||
COMMIT
|
||||
Reference in New Issue
Block a user