Warn about account problems

This commit is contained in:
M66B
2018-11-19 14:14:02 +01:00
parent 9fac677c4a
commit 73df0e41b9
10 changed files with 1166 additions and 5 deletions

View File

@@ -84,6 +84,9 @@ public interface DaoAccount {
@Query("UPDATE account SET state = :state WHERE id = :id")
int setAccountState(long id, String state);
@Query("UPDATE account SET last_connected = :last_connected WHERE id = :id")
int setAccountConnected(long id, long last_connected);
@Query("UPDATE account SET password = :password WHERE id = :id")
int setAccountPassword(long id, String password);