Add a skeleton for a name value storage associated with regions

This commit is contained in:
Melanie
2012-08-15 01:08:30 +02:00
parent 4a969b45bd
commit 7d1bec00d5
10 changed files with 116 additions and 0 deletions

View File

@@ -2094,5 +2094,18 @@ namespace OpenSim.Data.MySQL
}
}
}
public void SaveExtra(UUID regionID, string name, string val)
{
}
public void RemoveExtra(UUID regionID, string name)
{
}
public Dictionary<string, string> GetExtra(UUID regionID)
{
return null;
}
}
}

View File

@@ -895,3 +895,10 @@ CREATE TABLE `regionenvironment` (
COMMIT;
:VERSION 45
BEGIN;
CREATE TABLE `regionextra` (`RegionID` char(36) not null, `Name` varchar(32) not null, `value` text, primary key(`RegionID`, `Name`));
COMMIT;