3
0
mirror of https://github.com/Qortal/qortal.git synced 2025-02-12 10:15:49 +00:00

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;