2022-02-25 22:11:42 -08:00
|
|
|
# Pleroma: A lightweight social networking server
|
2023-01-02 12:38:50 -08:00
|
|
|
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
|
2022-02-25 22:11:42 -08:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-09-19 11:44:02 -07:00
|
|
|
defmodule Pleroma.Repo.Migrations.RemoteipPlugRename do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
import Ecto.Query
|
|
|
|
|
|
|
|
def up do
|
|
|
|
config =
|
2024-05-30 22:19:48 -07:00
|
|
|
from(c in Pleroma.ConfigDB,
|
|
|
|
where: c.group == ^:pleroma and c.key == ^Pleroma.Plugs.RemoteIp
|
|
|
|
)
|
2020-09-19 11:44:02 -07:00
|
|
|
|> Pleroma.Repo.one()
|
|
|
|
|
|
|
|
if config do
|
|
|
|
config
|
|
|
|
|> Ecto.Changeset.change(key: Pleroma.Web.Plugs.RemoteIp)
|
|
|
|
|> Pleroma.Repo.update()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def down, do: :ok
|
|
|
|
end
|