pleroma/priv/repo/migrations/20190722120237_drop_thread_visibility_function.exs

9 lines
239 B
Elixir
Raw Normal View History

2019-07-22 08:13:08 -04:00
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