Added index on operation name

This commit is contained in:
M66B
2019-03-03 12:59:58 +00:00
parent 1f80732916
commit 1a14a802b2
3 changed files with 1552 additions and 2 deletions

View File

@@ -49,7 +49,8 @@ import static androidx.room.ForeignKey.CASCADE;
},
indices = {
@Index(value = {"folder"}),
@Index(value = {"message"})
@Index(value = {"message"}),
@Index(value = {"name"})
}
)
public class EntityOperation {