2022-02-25 22:11:42 -08:00
|
|
|
# Pleroma: A lightweight social networking server
|
2023-01-01 03:11:47 -08:00
|
|
|
# Copyright © 2017-2023 Pleroma Authors <https://pleroma.social/>
|
2022-02-25 22:11:42 -08:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-08-24 23:10:45 -07:00
|
|
|
defmodule Pleroma.Repo.Migrations.RenameActivityExpirationSetting do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def change do
|
|
|
|
config = Pleroma.ConfigDB.get_by_params(%{group: :pleroma, key: Pleroma.ActivityExpiration})
|
|
|
|
|
|
|
|
if config do
|
|
|
|
config
|
|
|
|
|> Ecto.Changeset.change(key: Pleroma.Workers.PurgeExpiredActivity)
|
|
|
|
|> Pleroma.Repo.update()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|