Store folder separator

This commit is contained in:
M66B
2019-06-26 08:13:39 +02:00
parent 1774a619e0
commit 6f67982ce0
5 changed files with 1807 additions and 1 deletions

View File

@@ -102,6 +102,9 @@ public interface DaoAccount {
@Update
void updateAccount(EntityAccount account);
@Query("UPDATE account SET separator = :separator WHERE id = :id")
int setFolderSeparator(long id, Character separator);
@Query("UPDATE account SET synchronize = :synchronize WHERE id = :id")
int setAccountSynchronize(long id, boolean synchronize);