1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2018 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Mix.Tasks.Pleroma.Database do
6 alias Mix.Tasks.Pleroma.Common
9 @shortdoc "A collection of database related tasks"
11 A collection of database related tasks
13 ## Replace embedded objects with their references
15 Replaces embedded objects with references to them in the `objects` table. Only needs to be ran once. The reason why this is not a migration is because it could significantly increase the database size after being ran, however after this `VACUUM FULL` will be able to reclaim about 20% (really depends on what is in the database, your mileage may vary) of the db size before the migration.
17 mix pleroma.database remove_embedded_objects
20 - `--vacuum` - run `VACUUM FULL` after the embedded objects are replaced with their references
22 def run(["remove_embedded_objects" | args]) do
31 Common.start_pleroma()
33 Ecto.Adapters.SQL.query!(
35 "update activities set data = jsonb_set(data, '{object}'::text[], data->'object'->'id') where data->'object'->>'id' is not null;"
38 if Keyword.get(options, :vacuum) do
39 Ecto.Adapters.SQL.query!(