Added account warning

This commit is contained in:
M66B
2019-03-27 08:19:11 +00:00
parent 05f4c7497e
commit 3acb07b916
7 changed files with 1686 additions and 3 deletions

View File

@@ -108,6 +108,9 @@ public interface DaoAccount {
@Query("UPDATE account SET password = :password WHERE id = :id")
int setAccountPassword(long id, String password);
@Query("UPDATE account SET warning = :warning WHERE id = :id")
int setAccountWarning(long id, String warning);
@Query("UPDATE account SET error = :error WHERE id = :id")
int setAccountError(long id, String error);