forked from AkkomaGang/akkoma
0b5e72ecf0
In practice, it was already removed half a year ago, but the description and cheatsheet entries were still there. The migration intentionally does not use ConfigDB.get_by_params, since this will break migration code as soon as we add a new field is added to ConfigDB. Closes #2086
27 lines
554 B
Elixir
27 lines
554 B
Elixir
defmodule Pleroma.Repo.Migrations.RemoveManagedConfigFromDb do
|
|
use Ecto.Migration
|
|
import Ecto.Query
|
|
alias Pleroma.ConfigDB
|
|
alias Pleroma.Repo
|
|
|
|
def up do
|
|
config_entry =
|
|
from(c in ConfigDB,
|
|
select: [:id, :value],
|
|
where: c.group == ^:pleroma and c.key == ^:instance
|
|
)
|
|
|> Repo.one()
|
|
|
|
if config_entry do
|
|
{_, value} = Keyword.pop(config_entry.value, :managed_config)
|
|
|
|
config_entry
|
|
|> Ecto.Changeset.change(value: value)
|
|
|> Repo.update()
|
|
end
|
|
end
|
|
|
|
def down do
|
|
:ok
|
|
end
|
|
end
|