mirror of
https://github.com/opensim/opensim.git
synced 2026-05-25 03:05:41 +08:00
11 lines
222 B
SQL
11 lines
222 B
SQL
BEGIN TRANSACTION
|
|
|
|
CREATE TABLE [Friends] (
|
|
[PrincipalID] uniqueidentifier NOT NULL,
|
|
[Friend] varchar(255) NOT NULL,
|
|
[Flags] char(16) NOT NULL DEFAULT '0',
|
|
[Offered] varchar(32) NOT NULL DEFAULT 0)
|
|
ON [PRIMARY]
|
|
|
|
|
|
COMMIT |