mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2025-01-05 14:58:40 +00:00
8 lines
174 B
Elixir
8 lines
174 B
Elixir
|
defmodule Pleroma.Repo.Migrations.DeprecateConfigDBLogger do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
execute("DELETE FROM config WHERE config.group = ':logger'")
|
||
|
end
|
||
|
end
|