Minor readability improvement
This commit is contained in:
parent
ee8130c767
commit
76af74ef1c
1 changed files with 1 additions and 1 deletions
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue