Added statistics to debug info

This commit is contained in:
M66B
2022-01-12 17:13:25 +01:00
parent 9564ed0e9b
commit fa8e8ee011
4 changed files with 17 additions and 5 deletions

View File

@@ -231,6 +231,9 @@ public interface DaoFolder {
@Query("SELECT download FROM folder WHERE id = :id")
boolean getFolderDownload(long id);
@Query("SELECT COUNT(*) FROM folder")
int countTotal();
@Insert
long insertFolder(EntityFolder folder);