thread_visibility function drop

This commit is contained in:
Alex S 2019-07-22 15:13:08 +03:00 committed by Ariadne Conill
parent 08d60ce667
commit ba36288b8b

View File

@ -0,0 +1,8 @@
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