pleroma/priv/repo/migrations/20190722120237_drop_thread_visibility_function.exs
2019-08-25 23:26:10 +00:00

9 lines
239 B
Elixir

defmodule Pleroma.Repo.Migrations.DropThreadVisibilityFunction do
use Ecto.Migration
@disable_ddl_transaction true
def change do
execute("drop function if exists thread_visibility(actor varchar, activity_id varchar)")
end
end