Show when folder is executing operations

This commit is contained in:
M66B
2019-05-11 21:30:09 +02:00
parent c00eac14f4
commit a70a517c9f
10 changed files with 1826 additions and 6 deletions

View File

@@ -47,9 +47,11 @@ import static androidx.room.ForeignKey.CASCADE;
@ForeignKey(childColumns = "message", entity = EntityMessage.class, parentColumns = "id", onDelete = CASCADE)
},
indices = {
@Index(value = {"account"}),
@Index(value = {"folder"}),
@Index(value = {"message"}),
@Index(value = {"name"})
@Index(value = {"name"}),
@Index(value = {"state"})
}
)
public class EntityOperation {