Remove :workers config from ConfigDB

This commit is contained in:
Mark Felder 2024-06-28 12:06:43 -04:00
commit 1d3a92be11
2 changed files with 7 additions and 17 deletions

View file

@ -0,0 +1,7 @@
defmodule Pleroma.Repo.Migrations.DeprecateConfigDBWorkers do
use Ecto.Migration
def change do
execute("DELETE FROM config WHERE config.group = ':workers'")
end
end