diff options
author | UbitUmarov | 2017-12-11 23:58:27 +0000 |
---|---|---|
committer | UbitUmarov | 2017-12-11 23:58:27 +0000 |
commit | d32debe6184b1d6575b97541b98c520a8c4360c1 (patch) | |
tree | 5a11f277b6f7d45b859a3868379c517de590e0d2 /OpenSim/Data/MySQL/Resources | |
parent | increase sample rate of WaitGetScenePresence() (diff) | |
download | opensim-SC-d32debe6184b1d6575b97541b98c520a8c4360c1.zip opensim-SC-d32debe6184b1d6575b97541b98c520a8c4360c1.tar.gz opensim-SC-d32debe6184b1d6575b97541b98c520a8c4360c1.tar.bz2 opensim-SC-d32debe6184b1d6575b97541b98c520a8c4360c1.tar.xz |
commit what i did so far for core mutes module, befere i lose it
Diffstat (limited to 'OpenSim/Data/MySQL/Resources')
-rw-r--r-- | OpenSim/Data/MySQL/Resources/MuteListStore.migrations | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/MuteListStore.migrations b/OpenSim/Data/MySQL/Resources/MuteListStore.migrations new file mode 100644 index 0000000..5bde63e --- /dev/null +++ b/OpenSim/Data/MySQL/Resources/MuteListStore.migrations | |||
@@ -0,0 +1,16 @@ | |||
1 | :VERSION 1 | ||
2 | |||
3 | BEGIN; | ||
4 | |||
5 | CREATE TABLE `MuteList` ( | ||
6 | `AgentID` char(36) NOT NULL, | ||
7 | `MuteID` char(36) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000', | ||
8 | `MuteName` varchar(64) NOT NULL DEFAULT '', | ||
9 | `MuteType` int(11) NOT NULL DEFAULT '1', | ||
10 | `MuteFlags` int(11) NOT NULL DEFAULT '0', | ||
11 | `Stamp` int(11) NOT NULL, | ||
12 | UNIQUE KEY `AgentID_2` (`AgentID`,`MuteID`,`MuteName`), | ||
13 | KEY `AgentID` (`AgentID`) | ||
14 | ); | ||
15 | |||
16 | COMMIT; | ||