Revert "Resume last sync"

This reverts commit 62ae0eeb17.
This commit is contained in:
M66B
2018-09-06 05:33:04 +00:00
parent 62ae0eeb17
commit 30be70fec6
8 changed files with 2 additions and 1893 deletions

View File

@@ -117,9 +117,6 @@ public interface DaoFolder {
@Query("UPDATE folder SET synchronize = :synchronize, unified = :unified, after = :after WHERE id = :id")
int setFolderProperties(long id, boolean synchronize, boolean unified, int after);
@Query("UPDATE folder SET last_sync = :last_sync WHERE id = :id")
int setFolderLastSync(long id, long last_sync);
@Query("DELETE FROM folder WHERE account= :account AND name = :name")
void deleteFolder(Long account, String name);
}