diff options
author | Melanie | 2012-08-15 01:08:30 +0200 |
---|---|---|
committer | Melanie | 2012-08-15 01:08:30 +0200 |
commit | 7d1bec00d5cda6d7024a3d64b5913b5c08c15a3f (patch) | |
tree | b069ddb4607d598ff93b60103ba5756cca3520ae /OpenSim/Data/MySQL/Resources | |
parent | Remove NPC debug spam (diff) | |
download | opensim-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')
-rw-r--r-- | OpenSim/Data/MySQL/Resources/RegionStore.migrations | 7 |
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 | ||
896 | COMMIT; | 896 | COMMIT; |
897 | 897 | ||
898 | :VERSION 45 | ||
899 | |||
900 | BEGIN; | ||
901 | |||
902 | CREATE TABLE `regionextra` (`RegionID` char(36) not null, `Name` varchar(32) not null, `value` text, primary key(`RegionID`, `Name`)); | ||
903 | |||
904 | COMMIT; | ||