mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-11 02:28:45 +00:00
8 lines
153 B
Elixir
8 lines
153 B
Elixir
|
defmodule Pleroma.Repo.Migrations.AddIndexOnActivitiesLocal do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
create(index("activities", [:local]))
|
||
|
end
|
||
|
end
|