aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/SQLite/Resources/EstateStore.migrations
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Data/SQLite/Resources/EstateStore.migrations')
-rw-r--r--OpenSim/Data/SQLite/Resources/EstateStore.migrations9
1 files changed, 9 insertions, 0 deletions
diff --git a/OpenSim/Data/SQLite/Resources/EstateStore.migrations b/OpenSim/Data/SQLite/Resources/EstateStore.migrations
index 37fa1d9..30e04fd 100644
--- a/OpenSim/Data/SQLite/Resources/EstateStore.migrations
+++ b/OpenSim/Data/SQLite/Resources/EstateStore.migrations
@@ -63,7 +63,16 @@ CREATE TABLE IF NOT EXISTS estateban (
63 bannedIpHostMask varchar(16) NOT NULL, 63 bannedIpHostMask varchar(16) NOT NULL,
64 bannedNameMask varchar(64) default NULL 64 bannedNameMask varchar(64) default NULL
65); 65);
66
66CREATE INDEX estate_ban_estate_id on estateban(EstateID); 67CREATE INDEX estate_ban_estate_id on estateban(EstateID);
67 68
68COMMIT; 69COMMIT;
69 70
71:VERSION 11
72BEGIN;
73ALTER TABLE `estateban`
74 ADD COLUMN `banningUUID` varchar(36) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000',
75 ADD COLUMN `banTime` integer NOT NULL DEFAULT 0;
76COMMIT;
77
78