Get, store and display append limit

This commit is contained in:
M66B
2020-07-03 09:57:43 +02:00
parent 960f970771
commit d12e7a1d92
9 changed files with 2349 additions and 7 deletions

View File

@@ -163,6 +163,9 @@ public interface DaoAccount {
@Query("UPDATE account SET partial_fetch = :partial_fetch WHERE id = :id")
int setAccountPartialFetch(long id, boolean partial_fetch);
@Query("UPDATE account SET max_size = :max_size WHERE id = :id")
int setAccountMaxSize(long id, Long max_size);
@Query("UPDATE account SET warning = :warning WHERE id = :id")
int setAccountWarning(long id, String warning);