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.0.6.0-stable
parent
0c7a53d7c4
commit
605ceb6176
|
@ -53,6 +53,7 @@ CREATE TABLE estateban (
|
||||||
bannedNameMask varchar(64) default NULL
|
bannedNameMask varchar(64) default NULL
|
||||||
);
|
);
|
||||||
|
|
||||||
|
drop table regionsettings;
|
||||||
CREATE TABLE regionsettings (
|
CREATE TABLE regionsettings (
|
||||||
regionUUID char(36) NOT NULL,
|
regionUUID char(36) NOT NULL,
|
||||||
block_terraform int(11) NOT NULL,
|
block_terraform int(11) NOT NULL,
|
||||||
|
|
Loading…
Reference in New Issue