Minor readability improvement

This commit is contained in:
Naveen 2022-09-28 02:12:29 +05:30
parent ee8130c767
commit 76af74ef1c
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ interface ConversationsDao {
@Query("SELECT * FROM conversations")
fun getAll(): List<Conversation>
@Query("SELECT * FROM conversations where thread_id = :threadId")
@Query("SELECT * FROM conversations WHERE thread_id = :threadId")
fun getConversationWithThreadId(threadId: Long): Conversation?
@Query("SELECT * FROM conversations WHERE read = 0")