mirror of
https://git.rape.pet/ulith/amputoma.git
synced 2025-02-24 21:53:59 +01:00
7 lines
155 B
Elixir
7 lines
155 B
Elixir
defmodule Pleroma.Repo.Migrations.AddAppsIndexes do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
create(index(:apps, [:client_id, :client_secret]))
|
|
end
|
|
end
|