Add some logging

This commit is contained in:
rinpatch 2019-04-19 00:17:37 +03:00
parent 945325013a
commit 73b8c5387b
1 changed files with 4 additions and 0 deletions

View File

@ -4,6 +4,7 @@
defmodule Mix.Tasks.Pleroma.Database do
alias Mix.Tasks.Pleroma.Common
require Logger
use Mix.Task
@shortdoc "A collection of database related tasks"
@ -29,6 +30,7 @@ defmodule Mix.Tasks.Pleroma.Database do
)
Common.start_pleroma()
Logger.info("Removing embedded objects")
Pleroma.Repo.query!(
"update activities set data = jsonb_set(data, '{object}'::text[], data->'object'->'id') where data->'object'->>'id' is not null;",
@ -37,6 +39,8 @@ defmodule Mix.Tasks.Pleroma.Database do
)
if Keyword.get(options, :vacuum) do
Logger.info("Runnning VACUUM FULL")
Pleroma.Repo.query!(
"vacuum full;",
[],