Revert "Added account color to long press menu"

This reverts commit 5be1b53250.
This commit is contained in:
M66B
2021-06-20 14:39:20 +02:00
parent 5be1b53250
commit 2e76898655
3 changed files with 3 additions and 66 deletions

View File

@@ -136,9 +136,6 @@ public interface DaoAccount {
@Query("UPDATE account SET `primary` = :primary WHERE id = :id AND NOT (`primary` IS :primary)")
int setAccountPrimary(long id, boolean primary);
@Query("UPDATE account SET color = :color WHERE id = :id AND NOT (color IS :color)")
int setAccountColor(long id, Integer color);
@Query("UPDATE account SET thread = :thread WHERE id = :id AND NOT (thread IS :thread)")
int setAccountThread(long id, Long thread);