Migrations: Add unique index to ChatMessageReferences.
This commit is contained in:
parent
2591745fc2
commit
6413e06a86
|
@ -0,0 +1,14 @@
|
||||||
|
defmodule Pleroma.Repo.Migrations.BackfillChatMessageReferences do
|
||||||
|
use Ecto.Migration
|
||||||
|
|
||||||
|
alias Pleroma.Chat
|
||||||
|
alias Pleroma.ChatMessageReference
|
||||||
|
alias Pleroma.Object
|
||||||
|
alias Pleroma.Repo
|
||||||
|
|
||||||
|
import Ecto.Query
|
||||||
|
|
||||||
|
def change do
|
||||||
|
create(unique_index(:chat_message_references, [:object_id, :chat_id]))
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in New Issue