From 1cadad9ec62c54fe8ebde8a895817bd980fed975 Mon Sep 17 00:00:00 2001 From: lbsa71 Date: Sat, 21 Feb 2009 09:39:33 +0000 Subject: * Applied a patch that: Added estate ban table to migration scripts and nhibernate mapping. Refactored property getters and setters for estate ban object to support NHibernate. * Added estate ban table to migration scripts of all supported databases. * Added nhibernate mapping for EstateBans property of EstateSettings * Refactored property accessors for EstateBan object. * Added comments for EstateBan properties. * Ensured that NHibernate tests pass with NUnitGUI. * Ensured that nant test target passes. This fixes mantis #3210. Thank you, tlaukkan! --- .../NHibernate/Resources/SQLiteDialect/001_EstateStore.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'OpenSim/Data/NHibernate/Resources/SQLiteDialect') diff --git a/OpenSim/Data/NHibernate/Resources/SQLiteDialect/001_EstateStore.sql b/OpenSim/Data/NHibernate/Resources/SQLiteDialect/001_EstateStore.sql index 6e67630..afe702f 100644 --- a/OpenSim/Data/NHibernate/Resources/SQLiteDialect/001_EstateStore.sql +++ b/OpenSim/Data/NHibernate/Resources/SQLiteDialect/001_EstateStore.sql @@ -59,3 +59,13 @@ CREATE TABLE EstateGroups ( ArrayIndex INT NOT NULL, PRIMARY KEY (EstateID,ArrayIndex) ); + +CREATE TABLE EstateBans ( + EstateID INT NOT NULL, + ArrayIndex INT NOT NULL, + BannedUserID VARCHAR(36) NOT NULL, + BannedHostAddress VARCHAR(16) NOT NULL, + BannedHostIPMask VARCHAR(16) NOT NULL, + BannedHostNameMask VARCHAR(16) NOT NULL, + PRIMARY KEY (EstateID,ArrayIndex) +); -- cgit v1.1