aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/Resources/RegionStore.migrations
diff options
context:
space:
mode:
authorMelanie2012-08-15 01:08:30 +0200
committerMelanie2012-08-15 01:08:30 +0200
commit7d1bec00d5cda6d7024a3d64b5913b5c08c15a3f (patch)
treeb069ddb4607d598ff93b60103ba5756cca3520ae /OpenSim/Data/MySQL/Resources/RegionStore.migrations
parentRemove NPC debug spam (diff)
downloadopensim-SC_OLD-7d1bec00d5cda6d7024a3d64b5913b5c08c15a3f.zip
opensim-SC_OLD-7d1bec00d5cda6d7024a3d64b5913b5c08c15a3f.tar.gz
opensim-SC_OLD-7d1bec00d5cda6d7024a3d64b5913b5c08c15a3f.tar.bz2
opensim-SC_OLD-7d1bec00d5cda6d7024a3d64b5913b5c08c15a3f.tar.xz
Add a skeleton for a name value storage associated with regions
Diffstat (limited to 'OpenSim/Data/MySQL/Resources/RegionStore.migrations')
-rw-r--r--OpenSim/Data/MySQL/Resources/RegionStore.migrations7
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/RegionStore.migrations b/OpenSim/Data/MySQL/Resources/RegionStore.migrations
index db0d0ec..c4b0832 100644
--- a/OpenSim/Data/MySQL/Resources/RegionStore.migrations
+++ b/OpenSim/Data/MySQL/Resources/RegionStore.migrations
@@ -895,3 +895,10 @@ CREATE TABLE `regionenvironment` (
895 895
896COMMIT; 896COMMIT;
897 897
898:VERSION 45
899
900BEGIN;
901
902CREATE TABLE `regionextra` (`RegionID` char(36) not null, `Name` varchar(32) not null, `value` text, primary key(`RegionID`, `Name`));
903
904COMMIT;