diff options
author | Teravus Ovares | 2008-06-21 06:50:38 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-06-21 06:50:38 +0000 |
commit | 2758bc81ad79c6110777ceb6cc714c7b40014359 (patch) | |
tree | 6bf47a5c7ecd64a821a5339cf68f90204e1413d9 /OpenSim/Data/SQLite/Resources | |
parent | * Adds Region ban capability to Regions. You access this by going to World->... (diff) | |
download | opensim-SC_OLD-2758bc81ad79c6110777ceb6cc714c7b40014359.zip opensim-SC_OLD-2758bc81ad79c6110777ceb6cc714c7b40014359.tar.gz opensim-SC_OLD-2758bc81ad79c6110777ceb6cc714c7b40014359.tar.bz2 opensim-SC_OLD-2758bc81ad79c6110777ceb6cc714c7b40014359.tar.xz |
* Persists region banlists across reboots for the sqlite datastore also now.
Diffstat (limited to 'OpenSim/Data/SQLite/Resources')
-rw-r--r-- | OpenSim/Data/SQLite/Resources/002_RegionStore.sql | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Data/SQLite/Resources/002_RegionStore.sql b/OpenSim/Data/SQLite/Resources/002_RegionStore.sql new file mode 100644 index 0000000..c5c7c99 --- /dev/null +++ b/OpenSim/Data/SQLite/Resources/002_RegionStore.sql | |||
@@ -0,0 +1,10 @@ | |||
1 | BEGIN TRANSACTION; | ||
2 | |||
3 | CREATE TABLE regionban( | ||
4 | regionUUID varchar (255), | ||
5 | bannedUUID varchar (255), | ||
6 | bannedIp varchar (255), | ||
7 | bannedIpHostMask varchar (255) | ||
8 | ); | ||
9 | |||
10 | COMMIT; \ No newline at end of file | ||