diff options
author | Melanie | 2012-08-15 02:06:22 +0100 |
---|---|---|
committer | Melanie | 2012-08-15 02:06:22 +0100 |
commit | dc82ad0f7abe5f09675dfc3768da2a0134503916 (patch) | |
tree | e0745126d25725ca5650a088de9d54fd4e6bf349 /OpenSim/Data/MySQL/Resources/RegionStore.migrations | |
parent | Actually add the module (diff) | |
download | opensim-SC_OLD-dc82ad0f7abe5f09675dfc3768da2a0134503916.zip opensim-SC_OLD-dc82ad0f7abe5f09675dfc3768da2a0134503916.tar.gz opensim-SC_OLD-dc82ad0f7abe5f09675dfc3768da2a0134503916.tar.bz2 opensim-SC_OLD-dc82ad0f7abe5f09675dfc3768da2a0134503916.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.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 4a925fb..5b59779 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; | ||