aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MSSQL/Resources/Presence.migrations
blob: bcb63284346432e69e8f55f0a5619590088f2814 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
:VERSION 1

BEGIN TRANSACTION

CREATE TABLE [Presence] (
[UserID] varchar(255) NOT NULL, 
[RegionID] uniqueidentifier NOT NULL, 
[SessionID] uniqueidentifier NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000',
[SecureSessionID] uniqueidentifier NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000',

)
 ON [PRIMARY]

COMMIT

:VERSION 2

BEGIN TRANSACTION

CREATE UNIQUE INDEX SessionID ON Presence(SessionID);
CREATE INDEX UserID ON Presence(UserID);

COMMIT

:VERSION 2

BEGIN TRANSACTION

ALTER TABLE Presence ADD LastSeen DateTime

COMMIT