diff options
author | Oren Hurvitz | 2014-04-20 12:47:30 +0300 |
---|---|---|
committer | Oren Hurvitz | 2014-04-21 18:55:53 +0300 |
commit | acc2c42a795b42df702ded3cc302daa8b3e4c04c (patch) | |
tree | 14e1dc2236151619ccf7bb72ce281b08bce2ac54 /OpenSim/Data/MySQL | |
parent | Add 'lillith_xue' to list of CONTRIBUTORS.TXT (diff) | |
download | opensim-SC_OLD-acc2c42a795b42df702ded3cc302daa8b3e4c04c.zip opensim-SC_OLD-acc2c42a795b42df702ded3cc302daa8b3e4c04c.tar.gz opensim-SC_OLD-acc2c42a795b42df702ded3cc302daa8b3e4c04c.tar.bz2 opensim-SC_OLD-acc2c42a795b42df702ded3cc302daa8b3e4c04c.tar.xz |
Better logging in PresenceService, to help diagnose presence problems.
Diffstat (limited to 'OpenSim/Data/MySQL')
-rw-r--r-- | OpenSim/Data/MySQL/Resources/Presence.migrations | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/OpenSim/Data/MySQL/Resources/Presence.migrations b/OpenSim/Data/MySQL/Resources/Presence.migrations index be4030e..c4e40fa 100644 --- a/OpenSim/Data/MySQL/Resources/Presence.migrations +++ b/OpenSim/Data/MySQL/Resources/Presence.migrations | |||
@@ -1,4 +1,4 @@ | |||
1 | :VERSION 1 # -------------------------- | 1 | :VERSION 1 # -------------------------- |
2 | 2 | ||
3 | BEGIN; | 3 | BEGIN; |
4 | 4 | ||
@@ -21,3 +21,11 @@ BEGIN; | |||
21 | ALTER TABLE `Presence` ADD COLUMN LastSeen timestamp; | 21 | ALTER TABLE `Presence` ADD COLUMN LastSeen timestamp; |
22 | 22 | ||
23 | COMMIT; | 23 | COMMIT; |
24 | |||
25 | :VERSION 3 # -------------------------- | ||
26 | |||
27 | BEGIN; | ||
28 | |||
29 | CREATE INDEX RegionID ON Presence(RegionID); | ||
30 | |||
31 | COMMIT; | ||