aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/Resources/GridUserStore.migrations
diff options
context:
space:
mode:
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;