mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 09:16:28 +08:00
Added FriendsData to both Null storage and SQLite. Untested.
This commit is contained in:
10
OpenSim/Data/SQLite/Resources/001_FriendsStore.sql
Normal file
10
OpenSim/Data/SQLite/Resources/001_FriendsStore.sql
Normal file
@@ -0,0 +1,10 @@
|
||||
BEGIN TRANSACTION;
|
||||
|
||||
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`));
|
||||
|
||||
COMMIT;
|
||||
Reference in New Issue
Block a user