e87a32bcd7
Every time someone tries to use it, it goes mad and tries to scrape the entire fediverse for no visible reason, it's better to just remove it than continue shipping it in it's current state. idea acked by lain and feld on irc Closes #1595 #1422
10 lines
244 B
Elixir
10 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
|