aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/Resources/Presence.migrations
diff options
context:
space:
mode:
authorMelanie2010-05-18 19:02:40 +0100
committerMelanie2010-05-18 19:03:16 +0100
commite260610c0096ac5323c32a7a593e5521997eb732 (patch)
tree5d936d6450d580cf24e133047df7ff8d759de557 /OpenSim/Data/MySQL/Resources/Presence.migrations
parentAllow remote admin to be used on a different port from the main region port (diff)
parentMS SQL migrations converted to the new format (diff)
downloadopensim-SC_OLD-e260610c0096ac5323c32a7a593e5521997eb732.zip
opensim-SC_OLD-e260610c0096ac5323c32a7a593e5521997eb732.tar.gz
opensim-SC_OLD-e260610c0096ac5323c32a7a593e5521997eb732.tar.bz2
opensim-SC_OLD-e260610c0096ac5323c32a7a593e5521997eb732.tar.xz
Merge branch 'Migrations'
This merges AlexRa's work on migration streamlining. This merge is experimental. If it causes issues, feel free to back out. Signed-off-by: Melanie <melanie@t-data.com>
Diffstat (limited to 'OpenSim/Data/MySQL/Resources/Presence.migrations')
-rw-r--r--OpenSim/Data/MySQL/Resources/Presence.migrations36
1 files changed, 36 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/Presence.migrations b/OpenSim/Data/MySQL/Resources/Presence.migrations
new file mode 100644
index 0000000..d513024
--- /dev/null
+++ b/OpenSim/Data/MySQL/Resources/Presence.migrations
@@ -0,0 +1,36 @@
1:VERSION 1 # --------------------------
2
3BEGIN;
4
5CREATE TABLE `Presence` (
6 `UserID` VARCHAR(255) NOT NULL,
7 `RegionID` CHAR(36) NOT NULL,
8 `SessionID` CHAR(36) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000',
9 `SecureSessionID` CHAR(36) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000',
10 `Online` CHAR(5) NOT NULL DEFAULT 'false',
11 `Login` CHAR(16) NOT NULL DEFAULT '0',
12 `Logout` CHAR(16) NOT NULL DEFAULT '0',
13 `Position` CHAR(64) NOT NULL DEFAULT '<0,0,0>',
14 `LookAt` CHAR(64) NOT NULL DEFAULT '<0,0,0>'
15) ENGINE=InnoDB;
16
17COMMIT;
18
19:VERSION 2 # --------------------------
20
21BEGIN;
22
23ALTER TABLE Presence ADD COLUMN `HomeRegionID` CHAR(36) NOT NULL;
24ALTER TABLE Presence ADD COLUMN `HomePosition` CHAR(64) NOT NULL DEFAULT '<0,0,0>';
25ALTER TABLE Presence ADD COLUMN `HomeLookAt` CHAR(64) NOT NULL DEFAULT '<0,0,0>';
26
27COMMIT;
28
29:VERSION 3 # --------------------------
30
31BEGIN;
32
33CREATE UNIQUE INDEX SessionID ON Presence(SessionID);
34CREATE INDEX UserID ON Presence(UserID);
35
36COMMIT;