Added account/identity delete

This commit is contained in:
M66B
2018-08-07 19:35:21 +00:00
parent 847db6be1f
commit d3ed9271ab
8 changed files with 106 additions and 0 deletions

View File

@@ -70,5 +70,8 @@ public interface DaoAccount {
@Query("UPDATE account SET `primary` = 0")
void resetPrimary();
@Query("DELETE FROM account WHERE id = :id")
void deleteAccount(long id);
}