aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/Resources/GridUserStore.migrations
diff options
context:
space:
mode:
authorDiva Canto2010-05-20 20:24:50 -0700
committerDiva Canto2010-05-20 20:24:50 -0700
commit213e372253eb8a59f0afb627e11b0a5b6f6b088f (patch)
tree14fa5d7df3f94380d741f68241f98f5d3088b0c2 /OpenSim/Data/MySQL/Resources/GridUserStore.migrations
parentRemoved sessionID from GridUserservice again. Removed parcel crossing detecti... (diff)
downloadopensim-SC_OLD-213e372253eb8a59f0afb627e11b0a5b6f6b088f.zip
opensim-SC_OLD-213e372253eb8a59f0afb627e11b0a5b6f6b088f.tar.gz
opensim-SC_OLD-213e372253eb8a59f0afb627e11b0a5b6f6b088f.tar.bz2
opensim-SC_OLD-213e372253eb8a59f0afb627e11b0a5b6f6b088f.tar.xz
Cleaned up MySql migrations a bit more, got rid of all old-form migration files. Restored Presence table to its taboo-breaking form.
Diffstat (limited to 'OpenSim/Data/MySQL/Resources/GridUserStore.migrations')
-rw-r--r--OpenSim/Data/MySQL/Resources/GridUserStore.migrations19
1 files changed, 19 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/GridUserStore.migrations b/OpenSim/Data/MySQL/Resources/GridUserStore.migrations
new file mode 100644
index 0000000..32b85ee
--- /dev/null
+++ b/OpenSim/Data/MySQL/Resources/GridUserStore.migrations
@@ -0,0 +1,19 @@
1:VERSION 1 # --------------------------
2
3BEGIN;
4
5CREATE TABLE `GridUser` (
6 `UserID` VARCHAR(255) NOT NULL,
7 `HomeRegionID` CHAR(36) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000',
8 `HomePosition` CHAR(64) NOT NULL DEFAULT '<0,0,0>',
9 `HomeLookAt` CHAR(64) NOT NULL DEFAULT '<0,0,0>',
10 `LastRegionID` CHAR(36) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000',
11 `LastPosition` CHAR(64) NOT NULL DEFAULT '<0,0,0>',
12 `LastLookAt` CHAR(64) NOT NULL DEFAULT '<0,0,0>',
13 `Online` CHAR(5) NOT NULL DEFAULT 'false',
14 `Login` CHAR(16) NOT NULL DEFAULT '0',
15 `Logout` CHAR(16) NOT NULL DEFAULT '0',
16 PRIMARY KEY (`UserID`)
17) ENGINE=InnoDB;
18
19COMMIT;