Add ability to set a default post expiry (#321)
[akkoma] / priv / repo / migrations / 20200804183107_add_unique_index_to_app_client_id.exs
1 defmodule Pleroma.Repo.Migrations.AddUniqueIndexToAppClientId do
2 use Ecto.Migration
3
4 def change do
5 create(unique_index(:apps, [:client_id]))
6 end
7 end