Add option to modify HTTP pool size
[akkoma] / priv / repo / migrations / 20190501133552_add_refresh_token_index_to_token.exs
1 defmodule Pleroma.Repo.Migrations.AddRefreshTokenIndexToToken do
2 use Ecto.Migration
3
4 def change do
5 create_if_not_exists(unique_index(:oauth_tokens, [:refresh_token]))
6 end
7 end