diff options
author | Sean Dague | 2008-08-28 12:47:55 +0000 |
---|---|---|
committer | Sean Dague | 2008-08-28 12:47:55 +0000 |
commit | 605ceb61769117d6762ecd6c772888ff00fb8073 (patch) | |
tree | 3c69d5c8b80d682297f2cf8e3324345bd203f0c9 /OpenSim | |
parent | updated our libsl, _packet_.cs to the current version from openmv (diff) | |
download | opensim-SC_OLD-605ceb61769117d6762ecd6c772888ff00fb8073.zip opensim-SC_OLD-605ceb61769117d6762ecd6c772888ff00fb8073.tar.gz opensim-SC_OLD-605ceb61769117d6762ecd6c772888ff00fb8073.tar.bz2 opensim-SC_OLD-605ceb61769117d6762ecd6c772888ff00fb8073.tar.xz |
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.
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Data/SQLite/Resources/006_RegionStore.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Data/SQLite/Resources/006_RegionStore.sql b/OpenSim/Data/SQLite/Resources/006_RegionStore.sql index 15d3375..94ed818 100644 --- a/OpenSim/Data/SQLite/Resources/006_RegionStore.sql +++ b/OpenSim/Data/SQLite/Resources/006_RegionStore.sql | |||
@@ -53,6 +53,7 @@ CREATE TABLE estateban ( | |||
53 | bannedNameMask varchar(64) default NULL | 53 | bannedNameMask varchar(64) default NULL |
54 | ); | 54 | ); |
55 | 55 | ||
56 | drop table regionsettings; | ||
56 | CREATE TABLE regionsettings ( | 57 | CREATE TABLE regionsettings ( |
57 | regionUUID char(36) NOT NULL, | 58 | regionUUID char(36) NOT NULL, |
58 | block_terraform int(11) NOT NULL, | 59 | block_terraform int(11) NOT NULL, |