mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2024-11-06 00:49:46 +00:00
9 lines
284 B
Elixir
9 lines
284 B
Elixir
defmodule Pleroma.Repo.Migrations.ModifyActivityIndex do
|
|
use Ecto.Migration
|
|
@disable_ddl_transaction true
|
|
|
|
def change do
|
|
create(index(:activities, ["id desc nulls last", "local"], concurrently: true))
|
|
drop_if_exists(index(:activities, ["id desc nulls last"]))
|
|
end
|
|
end
|