Make lint happy

Ref: fix-local-public
This commit is contained in:
Tusooa Zhu 2022-05-09 15:31:26 -04:00
commit f1722a9f4a
No known key found for this signature in database
GPG key ID: 7B467EDE43A08224
2 changed files with 10 additions and 2 deletions

View file

@ -7,7 +7,10 @@ defmodule Pleroma.Repo.Migrations.ChangeThreadVisibilityToBeLocalOnlyAware do
end
def down do
execute("DROP FUNCTION IF EXISTS thread_visibility(actor varchar, activity_id varchar, local_public varchar)")
execute(
"DROP FUNCTION IF EXISTS thread_visibility(actor varchar, activity_id varchar, local_public varchar)"
)
execute(restore_thread_visibility())
end