Added message priority

This commit is contained in:
M66B
2019-09-30 16:55:58 +02:00
parent 9218aad5b4
commit c5f9d495e5
14 changed files with 2087 additions and 5 deletions

View File

@@ -364,6 +364,9 @@ public interface DaoMessage {
@Query("UPDATE message SET msgid = :msgid WHERE id = :id")
int setMessageMsgId(long id, String msgid);
@Query("UPDATE message SET priority = :priority WHERE id = :id")
int setMessagePriority(long id, Integer priority);
@Query("UPDATE message SET notifying = :notifying WHERE id = :id")
int setMessageNotifying(long id, int notifying);