mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2024-11-20 16:40:59 +00:00
8 lines
144 B
Elixir
8 lines
144 B
Elixir
|
defmodule Pleroma.Repo.Migrations.RemoveActivitiesIndex do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
drop index(:activities, [:data])
|
||
|
end
|
||
|
end
|