Add option to modify HTTP pool size
[akkoma] / priv / repo / migrations / 20171019141706_create_password_reset_tokens.exs
1 defmodule Pleroma.Repo.Migrations.CreatePasswordResetTokens do
2 use Ecto.Migration
3
4 def change do
5 create_if_not_exists table(:password_reset_tokens) do
6 add(:token, :string)
7 add(:user_id, references(:users))
8 add(:used, :boolean, default: false)
9
10 timestamps()
11 end
12 end
13 end