Auto disable partial fetch on empty message

This commit is contained in:
M66B
2020-03-06 15:29:33 +01:00
parent 4cdacb4698
commit eafc1197f2
2 changed files with 18 additions and 5 deletions

View File

@@ -149,6 +149,9 @@ public interface DaoAccount {
@Query("UPDATE account SET `order` = :order WHERE id = :id")
int setAccountOrder(long id, Integer order);
@Query("UPDATE account SET partial_fetch = :partial_fetch WHERE id = :id")
int setAccountPartialFetch(long id, boolean partial_fetch);
@Query("UPDATE account SET warning = :warning WHERE id = :id")
int setAccountWarning(long id, String warning);