diff options
author | lain <lain@soykaf.club> | 2020-06-03 14:32:19 +0200 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-06-03 14:34:33 +0200 |
commit | 7b79871e9721dca9b134598c182df890b909047c (patch) | |
tree | b111867a6bf19b2d2425c5d1f47dc8ddd4c58e60 | |
parent | 1e9efcf7c3de2aa4d57d4292dfa5843761bff111 (diff) | |
download | pleroma-7b79871e9721dca9b134598c182df890b909047c.tar.gz |
Migrations: Add chat_id, seen index to ChatMessageReferences
This ensures fast count of unseen messages
-rw-r--r-- | priv/repo/migrations/20200603122732_add_seen_index_to_chat_message_references.exs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/priv/repo/migrations/20200603122732_add_seen_index_to_chat_message_references.exs b/priv/repo/migrations/20200603122732_add_seen_index_to_chat_message_references.exs new file mode 100644 index 000000000..a5065d612 --- /dev/null +++ b/priv/repo/migrations/20200603122732_add_seen_index_to_chat_message_references.exs @@ -0,0 +1,12 @@ +defmodule Pleroma.Repo.Migrations.AddSeenIndexToChatMessageReferences do + use Ecto.Migration + + def change do + create( + index(:chat_message_references, [:chat_id], + where: "seen = false", + name: "unseen_messages_count_index" + ) + ) + end +end |