Add index to message.ui_seen

This commit is contained in:
M66B
2018-08-05 11:44:46 +00:00
parent c748c96d98
commit 10e96f6a3f
3 changed files with 671 additions and 3 deletions

View File

@@ -44,8 +44,8 @@ import static android.arch.persistence.room.ForeignKey.CASCADE;
@Index(value = {"replying"}),
@Index(value = {"folder", "uid"}, unique = true),
@Index(value = {"thread"}),
@Index(value = {"received"})
// ui_seen? ui_seen?
@Index(value = {"received"}),
@Index(value = {"ui_seen"}),
}
)
public class EntityMessage {