Drop the ArbitraryPeers table as it's no longer needed

This commit is contained in:
CalDescent 2022-03-06 13:01:09 +00:00
parent 42fcee0cfd
commit 4cb63100d3

View File

@ -959,6 +959,11 @@ public class HSQLDBDatabaseUpdates {
stmt.execute("CREATE INDEX SellNameNameIndex ON SellNameTransactions (name)");
break;
case 41:
// Drop the ArbitraryPeers table as it's no longer needed
stmt.execute("DROP TABLE ArbitraryPeers");
break;
default:
// nothing to do
return false;