From 605ceb61769117d6762ecd6c772888ff00fb8073 Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Thu, 28 Aug 2008 12:47:55 +0000 Subject: [PATCH] Fix for Bug #2065: New check out crashes on sqlite migration I apparently missed one drop tables statement that was actually needed when I did the cleaning to make this work for old sqlite versions. --- OpenSim/Data/SQLite/Resources/006_RegionStore.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/OpenSim/Data/SQLite/Resources/006_RegionStore.sql b/OpenSim/Data/SQLite/Resources/006_RegionStore.sql index 15d33752cf..94ed8181cd 100644 --- a/OpenSim/Data/SQLite/Resources/006_RegionStore.sql +++ b/OpenSim/Data/SQLite/Resources/006_RegionStore.sql @@ -53,6 +53,7 @@ CREATE TABLE estateban ( bannedNameMask varchar(64) default NULL ); +drop table regionsettings; CREATE TABLE regionsettings ( regionUUID char(36) NOT NULL, block_terraform int(11) NOT NULL,