aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/SQLite/Resources/002_RegionStore.sql
diff options
context:
space:
mode:
authorTeravus Ovares2008-06-21 06:50:38 +0000
committerTeravus Ovares2008-06-21 06:50:38 +0000
commit2758bc81ad79c6110777ceb6cc714c7b40014359 (patch)
tree6bf47a5c7ecd64a821a5339cf68f90204e1413d9 /OpenSim/Data/SQLite/Resources/002_RegionStore.sql
parent* Adds Region ban capability to Regions. You access this by going to World->... (diff)
downloadopensim-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/002_RegionStore.sql')
-rw-r--r--OpenSim/Data/SQLite/Resources/002_RegionStore.sql10
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 @@
1BEGIN TRANSACTION;
2
3CREATE TABLE regionban(
4 regionUUID varchar (255),
5 bannedUUID varchar (255),
6 bannedIp varchar (255),
7 bannedIpHostMask varchar (255)
8 );
9
10COMMIT; \ No newline at end of file