Improved send logic

This commit is contained in:
M66B
2020-06-26 10:59:32 +02:00
parent d063ead7ee
commit 6867f9ab6b
3 changed files with 58 additions and 67 deletions

View File

@@ -145,4 +145,7 @@ public interface DaoOperation {
@Query("DELETE FROM operation WHERE id = :id")
int deleteOperation(long id);
@Query("DELETE FROM operation WHERE folder = :folder")
int deleteOperations(long folder);
}