diff options
author | rinpatch <rinpatch@sdf.org> | 2019-06-21 06:41:13 +0300 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2019-06-21 06:41:13 +0300 |
commit | d55358f3705c34510f5ec1d9cef7ab3b0f11ed2f (patch) | |
tree | 2a6018046d37201c6d0236a0ea23ffabbeb86d5c /lib/mix/tasks/pleroma/database.ex | |
parent | 4bec121798218f8abf8d2915fa7c26ccb23a4f4a (diff) | |
parent | 2437f5128407bbcdfc152ea3f008d7eecc1728f2 (diff) | |
download | pleroma-d55358f3705c34510f5ec1d9cef7ab3b0f11ed2f.tar.gz |
Merge branch 'develop' into release-docs
Diffstat (limited to 'lib/mix/tasks/pleroma/database.ex')
-rw-r--r-- | lib/mix/tasks/pleroma/database.ex | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/mix/tasks/pleroma/database.ex b/lib/mix/tasks/pleroma/database.ex index 4d480ac3f..e91fb31d1 100644 --- a/lib/mix/tasks/pleroma/database.ex +++ b/lib/mix/tasks/pleroma/database.ex @@ -3,12 +3,12 @@ # SPDX-License-Identifier: AGPL-3.0-only defmodule Mix.Tasks.Pleroma.Database do - alias Mix.Tasks.Pleroma.Common alias Pleroma.Conversation alias Pleroma.Object alias Pleroma.Repo alias Pleroma.User require Logger + import Mix.Pleroma use Mix.Task @shortdoc "A collection of database related tasks" @@ -45,7 +45,7 @@ defmodule Mix.Tasks.Pleroma.Database do ] ) - Common.start_pleroma() + start_pleroma() Logger.info("Removing embedded objects") Repo.query!( @@ -66,12 +66,12 @@ defmodule Mix.Tasks.Pleroma.Database do end def run(["bump_all_conversations"]) do - Common.start_pleroma() + start_pleroma() Conversation.bump_for_all_activities() end def run(["update_users_following_followers_counts"]) do - Common.start_pleroma() + start_pleroma() users = Repo.all(User) Enum.each(users, &User.remove_duplicated_following/1) @@ -89,7 +89,7 @@ defmodule Mix.Tasks.Pleroma.Database do ] ) - Common.start_pleroma() + start_pleroma() deadline = Pleroma.Config.get([:instance, :remote_post_retention_days]) |