diff options
author | Geir Nøklebye | 2015-07-25 20:35:25 +0200 |
---|---|---|
committer | Oren Hurvitz | 2015-07-26 11:59:15 +0100 |
commit | a7fccbcf6fc4a6b42ce6381c65c85b3ca7fdee3e (patch) | |
tree | e1db8a02d0c706535af733ccd75d9f4fd1c56230 /OpenSim/Data/PGSQL/Resources | |
parent | Add LogFile option in OpenSimDefaults.ini. It was omitted accidentally (diff) | |
download | opensim-SC-a7fccbcf6fc4a6b42ce6381c65c85b3ca7fdee3e.zip opensim-SC-a7fccbcf6fc4a6b42ce6381c65c85b3ca7fdee3e.tar.gz opensim-SC-a7fccbcf6fc4a6b42ce6381c65c85b3ca7fdee3e.tar.bz2 opensim-SC-a7fccbcf6fc4a6b42ce6381c65c85b3ca7fdee3e.tar.xz |
Update PGSQL groups handler to accept search queries from the viewer
Update PGSQL groups handler to accept search queries from the viewer.
Fixed malformed query strings.
Signed-off-by: Oren Hurvitz <orenh@kitely.com>
Diffstat (limited to 'OpenSim/Data/PGSQL/Resources')
-rwxr-xr-x[-rw-r--r--] | OpenSim/Data/PGSQL/Resources/Presence.migrations | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Data/PGSQL/Resources/Presence.migrations b/OpenSim/Data/PGSQL/Resources/Presence.migrations index 684faa2..482beef 100644..100755 --- a/OpenSim/Data/PGSQL/Resources/Presence.migrations +++ b/OpenSim/Data/PGSQL/Resources/Presence.migrations | |||
@@ -28,3 +28,11 @@ BEGIN TRANSACTION; | |||
28 | ALTER TABLE Presence ADD "LastSeen" Timestamp; | 28 | ALTER TABLE Presence ADD "LastSeen" Timestamp; |
29 | 29 | ||
30 | COMMIT; | 30 | COMMIT; |
31 | |||
32 | :VERSION 3 # -------------------------- | ||
33 | |||
34 | BEGIN; | ||
35 | |||
36 | CREATE INDEX RegionID ON Presence("RegionID"); | ||
37 | |||
38 | COMMIT; | ||