mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-01 14:21:10 +00:00
11 lines
244 B
Elixir
11 lines
244 B
Elixir
|
defmodule Pleroma.Repo.Migrations.ConfigRemoveFetchInitialPosts do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
execute(
|
||
|
"delete from config where config.key = ':fetch_initial_posts' and config.group = ':pleroma';",
|
||
|
""
|
||
|
)
|
||
|
end
|
||
|
end
|