Hotfix NodeDownload

This commit is contained in:
Lixfel
2024-11-23 17:09:58 +01:00
parent c2cf6125d1
commit c15d523f3b
@@ -40,7 +40,7 @@ public class NodeDownload {
private static final Table<NodeDownload> table = new Table<>(NodeDownload.class);
private static final Statement insert = table.insertFields("NodeId", "Link");
private static final SelectStatement<NodeDownload> select = table.select("link");
private static final SelectStatement<NodeDownload> select = table.selectFields("link");
private static final Statement delete = table.delete(Table.PRIMARY);