aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/PGSQL/Resources/RegionStore.migrations
diff options
context:
space:
mode:
authorGeir Nøklebye2017-04-13 11:54:25 +0200
committerMichael Cerquoni2017-04-19 14:04:54 -0400
commit28125202cc320dee3f4908f07eb4fbc04a134d6e (patch)
tree0e6dbe3b28da69b865c60d92cfd37fe64680f507 /OpenSim/Data/PGSQL/Resources/RegionStore.migrations
parentPGSQL: Fixed a failing query in GroupsData for deleting groups messages older... (diff)
downloadopensim-SC_OLD-28125202cc320dee3f4908f07eb4fbc04a134d6e.zip
opensim-SC_OLD-28125202cc320dee3f4908f07eb4fbc04a134d6e.tar.gz
opensim-SC_OLD-28125202cc320dee3f4908f07eb4fbc04a134d6e.tar.bz2
opensim-SC_OLD-28125202cc320dee3f4908f07eb4fbc04a134d6e.tar.xz
update for The new Constant: integer OBJECT_REZZER_KEY = 32 + adding missing support for fields in the prims table.
Signed-off-by: Michael Cerquoni <nebadon2025@gmail.com>
Diffstat (limited to '')
-rw-r--r--OpenSim/Data/PGSQL/Resources/RegionStore.migrations9
1 files changed, 9 insertions, 0 deletions
diff --git a/OpenSim/Data/PGSQL/Resources/RegionStore.migrations b/OpenSim/Data/PGSQL/Resources/RegionStore.migrations
index c085939..2f197bf 100644
--- a/OpenSim/Data/PGSQL/Resources/RegionStore.migrations
+++ b/OpenSim/Data/PGSQL/Resources/RegionStore.migrations
@@ -1195,3 +1195,12 @@ CREATE TABLE bakedterrain
1195 ); 1195 );
1196 1196
1197COMMIT; 1197COMMIT;
1198
1199:VERSION 45 #---- Add RezzerID filed in table prims
1200
1201BEGIN TRANSACTION;
1202
1203ALTER TABLE prims ADD "RezzerID" uuid NULL;
1204
1205COMMIT;
1206