diff options
author | Justin Clark-Casey (justincc) | 2014-11-28 00:27:13 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2014-11-28 00:27:13 +0000 |
commit | d9f7aa41c100ebbc8a9f817ec4d4e247b2bd27fd (patch) | |
tree | 745f9e4e150ccc1d1e81ee04ebda5fa46a5ed1b8 /OpenSim/Data/MSSQL/Resources/Presence.migrations | |
parent | Stop writing SizeZ config parameter for now when creating regions from consol... (diff) | |
download | opensim-SC_OLD-d9f7aa41c100ebbc8a9f817ec4d4e247b2bd27fd.zip opensim-SC_OLD-d9f7aa41c100ebbc8a9f817ec4d4e247b2bd27fd.tar.gz opensim-SC_OLD-d9f7aa41c100ebbc8a9f817ec4d4e247b2bd27fd.tar.bz2 opensim-SC_OLD-d9f7aa41c100ebbc8a9f817ec4d4e247b2bd27fd.tar.xz |
Remove unmaintained MSSQL support.
This has not been maintained for more than 2 years, is unimplemented for newer features (e.g. built-in groups) and has no core developers using it.
If somebody fixes these issues then it could be reinstated.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/MSSQL/Resources/Presence.migrations | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/OpenSim/Data/MSSQL/Resources/Presence.migrations b/OpenSim/Data/MSSQL/Resources/Presence.migrations deleted file mode 100644 index f84275d..0000000 --- a/OpenSim/Data/MSSQL/Resources/Presence.migrations +++ /dev/null | |||
@@ -1,39 +0,0 @@ | |||
1 | :VERSION 1 | ||
2 | |||
3 | BEGIN TRANSACTION | ||
4 | |||
5 | CREATE TABLE [Presence] ( | ||
6 | [UserID] varchar(255) NOT NULL, | ||
7 | [RegionID] uniqueidentifier NOT NULL, | ||
8 | [SessionID] uniqueidentifier NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000', | ||
9 | [SecureSessionID] uniqueidentifier NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000', | ||
10 | |||
11 | ) | ||
12 | ON [PRIMARY] | ||
13 | |||
14 | COMMIT | ||
15 | |||
16 | :VERSION 2 | ||
17 | |||
18 | BEGIN TRANSACTION | ||
19 | |||
20 | CREATE UNIQUE INDEX SessionID ON Presence(SessionID); | ||
21 | CREATE INDEX UserID ON Presence(UserID); | ||
22 | |||
23 | COMMIT | ||
24 | |||
25 | :VERSION 2 | ||
26 | |||
27 | BEGIN TRANSACTION | ||
28 | |||
29 | ALTER TABLE Presence ADD LastSeen DateTime; | ||
30 | |||
31 | COMMIT | ||
32 | |||
33 | :VERSION 3 | ||
34 | |||
35 | BEGIN TRANSACTION | ||
36 | |||
37 | CREATE INDEX RegionID ON Presence(RegionID); | ||
38 | |||
39 | COMMIT | ||