Added uuid to identities

This commit is contained in:
M66B
2022-06-27 15:52:19 +02:00
parent 1d8985cdce
commit f1efdb6018
5 changed files with 2812 additions and 6 deletions

View File

@@ -86,6 +86,9 @@ public interface DaoIdentity {
@Query("SELECT * FROM identity WHERE id = :id")
EntityIdentity getIdentity(long id);
@Query("SELECT * FROM identity WHERE uuid = :uuid")
EntityIdentity getIdentityByUUID(String uuid);
@Insert
long insertIdentity(EntityIdentity identity);