From 901fdca13b8b6617ceabc4766c684799f4f8739b Mon Sep 17 00:00:00 2001 From: Dr Scofield Date: Wed, 27 May 2009 18:01:06 +0000 Subject: From: Chris Yeoh The attached patch implements llPassTouches. It has been added to the export/import XML along with the flag for AllowedInventoryDrop. The MySQL backend has been updated as well, though I haven't done one of those before so could do with a check. I added the migration mysql file as well. The other data backends need updating as well. --- OpenSim/Data/MySQL/Resources/029_RegionStore.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 OpenSim/Data/MySQL/Resources/029_RegionStore.sql (limited to 'OpenSim/Data/MySQL/Resources/029_RegionStore.sql') diff --git a/OpenSim/Data/MySQL/Resources/029_RegionStore.sql b/OpenSim/Data/MySQL/Resources/029_RegionStore.sql new file mode 100644 index 0000000..b5962a2 --- /dev/null +++ b/OpenSim/Data/MySQL/Resources/029_RegionStore.sql @@ -0,0 +1,5 @@ +BEGIN; + +ALTER TABLE prims ADD COLUMN PassTouches tinyint not null default 0; + +COMMIT; -- cgit v1.1