2017-10-19 09:37:24 -06:00
|
|
|
defmodule Pleroma.Repo.Migrations.CreatePasswordResetTokens do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def change do
|
2019-06-30 19:08:07 -06:00
|
|
|
create_if_not_exists table(:password_reset_tokens) do
|
2017-10-19 09:37:24 -06:00
|
|
|
add :token, :string
|
|
|
|
add :user_id, references(:users)
|
|
|
|
add :used, :boolean, default: false
|
|
|
|
|
|
|
|
timestamps()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|