mirror of
https://github.com/opensim/opensim.git
synced 2026-06-17 10:05:56 +08:00
11 lines
224 B
SQL
11 lines
224 B
SQL
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 |