[#468] Merged upstream/develop, resolved conflicts.
This commit is contained in:
commit
bc4f77b10b
499 changed files with 1768 additions and 796 deletions
12
priv/repo/migrations/20190205114625_create_thread_mutes.exs
Normal file
12
priv/repo/migrations/20190205114625_create_thread_mutes.exs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
defmodule Pleroma.Repo.Migrations.CreateThreadMutes do
|
||||
use Ecto.Migration
|
||||
|
||||
def change do
|
||||
create table(:thread_mutes) do
|
||||
add :user_id, references(:users, type: :uuid, on_delete: :delete_all)
|
||||
add :context, :string
|
||||
end
|
||||
|
||||
create unique_index(:thread_mutes, [:user_id, :context], name: :unique_index)
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue